Dead Link
Detects dead links, checks if they exist on archive.org, and gives you the option to view them on archive.org
Co to jest Dead Link?
Dead Link to rozszerzenie Chrome opracowane przez bthdonohue, a jego główną funkcją jest „Detects dead links, checks if they exist on archive.org, and gives you the option to view them on archive.org”.
Pobierz plik CRX rozszerzenia Dead Link
Pobierz pliki rozszerzeń Dead Link w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
Detects dead links, checks if they exist on archive.org, and gives you the option to view them on archive.org
Podstawowe informacje o rozszerzeniu
Nazwa | |
ID | cbhijdjkncfjjiodgafikkafnnmicnna |
Oficjalny URL | https://chrome.google.com/webstore/detail/cbhijdjkncfjjiodgafikkafnnmicnna |
Opis | Detects dead links, checks if they exist on archive.org, and gives you the option to view them on archive.org |
Rozmiar pliku | 392 KB |
Liczba instalacji | 59 |
Aktualna Wersja | 1 |
Ostatnia Aktualizacja | 2016-02-22 |
Data Publikacji | 2016-02-22 |
Ocena | 3.00/5 Łącznie 2 Oceny |
Deweloper | bthdonohue |
Typ Płatności | free |
Obsługiwane Języki | 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" ] } |