Hover Link
When hovering over short url link or any link it will show the final destination URL.
Hover Linkคืออะไร?
Hover Link เป็นส่วนขยายของ Chrome ที่พัฒนาโดย connerb และคุณลักษณะหลักของมันคือ "When hovering over short url link or any link it will show the final destination URL."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Hover Link
ดาวน์โหลดไฟล์ส่วนขยาย Hover Link ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Hover Link is a simple extension that allows you to view and copy short URL and normal URL links on websites. For the short URL links it will display their destination URL as well.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | ggbpdjpocpnohglmhmppdkimpoiklegb |
URL อย่างเป็นทางการ | https://chrome.google.com/webstore/detail/hover-link/ggbpdjpocpnohglmhmppdkimpoiklegb |
คำอธิบาย | When hovering over short url link or any link it will show the final destination URL. |
ขนาดไฟล์ | 60.52 KB |
จำนวนการติดตั้ง | 423 |
เวอร์ชันปัจจุบัน | 1.0 |
อัปเดตครั้งล่าสุด | 2014-10-06 |
วันที่เผยแพร่ | 2014-10-06 |
คะแนน | 2.44/5 รวมทั้งหมด 9 คะแนน |
ผู้พัฒนา | connerb |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | http://www.connerb.com |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Hover Link", "description": "When hovering over short url link or any link it will show the final destination URL.", "version": "1.0", "manifest_version": 2, "icons": { "48": "icons\/48x48.png" }, "background": { "page": "html\/background.html" }, "permissions": [ "*:\/\/*\/*", "storage", "webRequest", "webRequestBlocking" ], "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "js\/jquery-2.1.1.min.js", "js\/script.js" ], "css": [ "css\/script.css" ], "all_frames": false, "run_at": "document_end" } ], "options_page": "html\/options.html", "page_action": { "default_icon": { "19": "icons\/19x19.png" }, "default_title": "Hover Link", "default_popup": "html\/options.html" } } |