Link Checker
Link checking using XHR.
Link Checkerคืออะไร?
Link Checker เป็นส่วนขยายของ Chrome ที่พัฒนาโดย synmantics และคุณลักษณะหลักของมันคือ "Link checking using XHR."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Link Checker
ดาวน์โหลดไฟล์ส่วนขยาย Link Checker ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Fork me: http://github.com/myshen/chrome-extension-linkchecker Please leave requests/comments/suggestions/PRs/etc on github! Known issues (2015-02-17): 2.0.0 - link checking won't start; open Options, delete blacklist, click Save. Upgrade to 2.0.1 Quick and dirty checking of links in page using XHR. Failed links are dumped in the console. Green links returned status code in range [200, 400) Red links returned error code. Blue links timed out or there was some error sending the HTTP request. Gray links are blacklisted HTTP HEAD is tried first, then GET. Icon image: Wikimedia External link icon rasterized from SVG. Changelog ======== 2.0.1 - Fix unable to start without blacklist 2.0.0 - Allow blacklisting, rewrite to allow fewer simultaneous requests 1.3.0 - Update to manifest version 2 away from deprecated version 1 1.2.1 - Added clearing feature
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Link Checker |
ID | aibjbgmpmnidnmagaefhmcjhadpffaoi |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/link-checker/aibjbgmpmnidnmagaefhmcjhadpffaoi |
คำอธิบาย | Link checking using XHR. |
ขนาดไฟล์ | 90.61 KB |
จำนวนการติดตั้ง | 7,141 |
เวอร์ชันปัจจุบัน | 2.0.1 |
อัปเดตครั้งล่าสุด | 2015-02-18 |
วันที่เผยแพร่ | 2015-02-17 |
คะแนน | 3.84/5 รวมทั้งหมด 43 คะแนน |
ผู้พัฒนา | synmantics |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | http://github.com/myshen/chrome-extension-linkchecker |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Link Checker", "manifest_version": 2, "version": "2.0.1", "description": "Link checking using XHR.", "icons": { "16": "icon.png", "48": "icon.png", "128": "icon_128.png" }, "browser_action": { "default_icon": "icon.png", "default_title": "Link Checker", "default_popup": "popup.html" }, "background": { "persistent": false, "scripts": [ "URI.js", "background.js" ] }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "jquery.js", "linkchecker.js" ], "all_frames": true } ], "options_page": "dashboard.html", "permissions": [ "tabs", "storage", "unlimitedStorage", "http:\/\/*\/*", "https:\/\/*\/*" ] } |