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 là gì?
Dead Link là một tiện ích mở rộng Chrome được phát triển bởi bthdonohue, và tính năng chính của nó là "Detects dead links, checks if they exist on archive.org, and gives you the option to view them on archive.org".
Tải xuống tệp CRX của tiện ích mở rộng Dead Link
Tải xuống các tệp mở rộng Dead Link dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
Detects dead links, checks if they exist on archive.org, and gives you the option to view them on archive.org
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | cbhijdjkncfjjiodgafikkafnnmicnna |
URL Chính Thức | https://chrome.google.com/webstore/detail/cbhijdjkncfjjiodgafikkafnnmicnna |
Mô tả | Detects dead links, checks if they exist on archive.org, and gives you the option to view them on archive.org |
Kích Thước Tệp | 392 KB |
Số Lần Cài Đặt | 59 |
Phiên Bản Hiện Tại | 1 |
Cập Nhật Lần Cuối | 2016-02-22 |
Ngày Phát Hành | 2016-02-22 |
Đánh Giá | 3.00/5 Tổng số 2 Đánh Giá |
Nhà Phát Triển | bthdonohue |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } |