1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

slide共有サイトが直接見られない場合の SSSSlide 利用の為のブックマークレット

1
Last updated at Posted at 2024-03-29

背景

Data Loss Policy などで、投稿共有サイトへのアクセスが閉じられていることがあります。
閲覧だけは解禁してよって思うわけですが、以下サイトを介して閲覧可能だったりします。
とはいえ、禁止されていた場合に、URL修正が面倒なのでそれ用のブックマークレットの備忘録

ほんと、ありがとうございます

結論

以下をブックマークレットに登録するだけ

view through sssslide
javascript:(function(){
  if (location.href.startsWith("chrome-error")) {
    let value = prompt("input URL to view via SSSSLIDE");
    location.href = 'https://sssslide.com/' + value;
  } else {
    location.href = 'https://sssslide.com/' + location.href;
  }
})();

あとがき

以下に追加しようと思ったら、Title が 365 だった・・。業務用ブックマークレットでよかったような・・ :(

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?