Dead Link
Detects dead links, checks if they exist on archive.org, and gives you the option to view them on archive.org
Wat is Dead Link?
Dead Link is een Chrome-extensie ontwikkeld door bthdonohue, en de belangrijkste functie is "Detects dead links, checks if they exist on archive.org, and gives you the option to view them on archive.org".
Download het CRX-bestand van de extensie Dead Link
Download Dead Link-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
Detects dead links, checks if they exist on archive.org, and gives you the option to view them on archive.org
Basisinformatie over de Extensie
Naam | |
ID | cbhijdjkncfjjiodgafikkafnnmicnna |
Officiële URL | https://chrome.google.com/webstore/detail/cbhijdjkncfjjiodgafikkafnnmicnna |
Beschrijving | Detects dead links, checks if they exist on archive.org, and gives you the option to view them on archive.org |
Bestandsgrootte | 392 KB |
Aantal Installaties | 59 |
Huidige Versie | 1 |
Laatst Bijgewerkt | 2016-02-22 |
Publicatiedatum | 2016-02-22 |
Beoordeling | 3.00/5 Totaal 2 Beoordelingen |
Ontwikkelaar | bthdonohue |
Betalingswijze | free |
Ondersteunde Talen | 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" ] } |