Dead Link
Detects dead links, checks if they exist on archive.org, and gives you the option to view them on archive.org
Dead Linkとは何ですか?
Dead Linkはbthdonohueによって開発されたChromeの拡張機能で、その主な機能は「Detects dead links, checks if they exist on archive.org, and gives you the option to view them on archive.org」です。
Dead Link拡張機能のCRXファイルをダウンロード
Dead Link拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Detects dead links, checks if they exist on archive.org, and gives you the option to view them on archive.org
拡張機能の基本情報
名前 | |
ID | cbhijdjkncfjjiodgafikkafnnmicnna |
公式URL | https://chrome.google.com/webstore/detail/cbhijdjkncfjjiodgafikkafnnmicnna |
説明 | Detects dead links, checks if they exist on archive.org, and gives you the option to view them on archive.org |
ファイルサイズ | 392 KB |
インストール数 | 59 |
現在のバージョン | 1 |
最終更新日 | 2016-02-22 |
公開日 | 2016-02-22 |
評価 | 3.00/5 合計 2 レビュー |
開発者 | bthdonohue |
支払い方法 | free |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Dead Link", "description": "Detects dead links, checks if they exist on archive.org, and gives you the option to view them on archive.org", "version": "1", "icons": { "16": "16.png", "48": "48.png", "128": "128.png" }, "background": { "scripts": [ "background.js" ] }, "permissions": [ "activeTab", "http:\/\/*\/*", "https:\/\/*\/*" ], "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "deadlink.js" ], "css": [ "deadlink.css" ], "run_at": "document_end" } ], "web_accessible_resources": [ "*.gif" ] } |