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คืออะไร?
Dead Link เป็นส่วนขยายของ Chrome ที่พัฒนาโดย bthdonohue และคุณลักษณะหลักของมันคือ "Detects dead links, checks if they exist on archive.org, and gives you the option to view them on archive.org"
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Dead Link
ดาวน์โหลดไฟล์ส่วนขยาย Dead Link ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Detects dead links, checks if they exist on archive.org, and gives you the option to view them on archive.org
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | cbhijdjkncfjjiodgafikkafnnmicnna |
URL อย่างเป็นทางการ | https://chrome.google.com/webstore/detail/cbhijdjkncfjjiodgafikkafnnmicnna |
คำอธิบาย | Detects dead links, checks if they exist on archive.org, and gives you the option to view them on archive.org |
ขนาดไฟล์ | 392 KB |
จำนวนการติดตั้ง | 59 |
เวอร์ชันปัจจุบัน | 1 |
อัปเดตครั้งล่าสุด | 2016-02-22 |
วันที่เผยแพร่ | 2016-02-22 |
คะแนน | 3.00/5 รวมทั้งหมด 2 คะแนน |
ผู้พัฒนา | bthdonohue |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | 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" ] } |