Dead Link
Detects dead links, checks if they exist on archive.org, and gives you the option to view them on archive.org
What is Dead Link?
Dead Link is a Chrome extension developed by bthdonohue, and its main feature is "Detects dead links, checks if they exist on archive.org, and gives you the option to view them on archive.org".
Download Dead Link Extension CRX File
Download Dead Link extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Detects dead links, checks if they exist on archive.org, and gives you the option to view them on archive.org
Extension Basic Information
Name | |
ID | cbhijdjkncfjjiodgafikkafnnmicnna |
Official URL | https://chrome.google.com/webstore/detail/cbhijdjkncfjjiodgafikkafnnmicnna |
Description | Detects dead links, checks if they exist on archive.org, and gives you the option to view them on archive.org |
File Size | 392 KB |
Installation Count | 59 |
Current Version | 1 |
Last Updated | 2016-02-22 |
Publish Date | 2016-02-22 |
Rating | 3.00/5 Total 2 Ratings |
Developer | bthdonohue |
Payment Type | free |
Supported Languages | 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" ] } |