Dead Link
Detects dead links, checks if they exist on archive.org, and gives you the option to view them on archive.org
Qu'est-ce que Dead Link ?
Dead Link est une extension Chrome développée par bthdonohue, et sa fonction principale est "Detects dead links, checks if they exist on archive.org, and gives you the option to view them on archive.org".
Télécharger le fichier CRX de l'extension Dead Link
Téléchargez les fichiers d'extension Dead Link au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
Detects dead links, checks if they exist on archive.org, and gives you the option to view them on archive.org
Informations de Base sur l'Extension
Nom | |
ID | cbhijdjkncfjjiodgafikkafnnmicnna |
URL Officiel | 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 |
Taille du Fichier | 392 KB |
Nombre d'Installations | 59 |
Version Actuelle | 1 |
Dernière Mise à Jour | 2016-02-22 |
Date de Publication | 2016-02-22 |
Évaluation | 3.00/5 Total 2 Évaluations |
Développeur | bthdonohue |
Type de Paiement | free |
Langues Prises en Charge | 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" ] } |