Qiita Careers powered by IndeedPR

求人サイト「Qiita Careers powered by Indeed」では、エンジニアのあなたにマッチした求人が見つかります。

1
2

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.

Web Archive 魚拓サービスを表示するJavaScriptのブックマーク登録

1
Last updated at Posted at 2023-05-03

目的

現在閲覧しているページのアーカイブがWeb Archiveやウェブ魚拓に保存されているか確認するのにいちいち各サイトを確認するのは面倒くさいので、ワンクリックで確認できるようにしたい。

方法

ブックマークにjavascriptコードを登録する

javascriptコード

Web Archive

javascript:(function(){open("https://web.archive.org/web/*/" + location.href)})()

アーカイブの有無を気にせず、直ちに保存したい場合は次のとおり。

javascript:(function(){open("https://web.archive.org/save/" + location.href)})()

archive.today

encodeURIComponent で :(コロン)、/(スラッシュ)、?(クエスチョン)等もエンコードしておく。
※encodeURIはそれらはエンコードされない。

javascript:(function(){open("https://archive.today/submit/?url=" + encodeURIComponent(location.href))})()

ウェブ魚拓

上記2つと比べると保存できる対象が少ないので使う人はいないかもしれないが、一応紹介。

javascript:(function(){open("https://gyo.tc/" + location.href)})()

登録イメージ

URL欄に上記のjavascriptコードを入力してブックマーク登録する。
20230503.png

1
2
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
massanpc

@massanpc(massanpc)

Working at Investment and Actuarial Department

Comments

No comments

Let's comment your feelings that are more than good

Being held Article posting campaign

1
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Login to continue?

Login or Sign up with social account

Login or Sign up with your email address