View href
This extension shows the href of all the links on a page along with its title while hovering
View hrefคืออะไร?
View href เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://rajbhadra.com และคุณลักษณะหลักของมันคือ "This extension shows the href of all the links on a page along with its title while hovering"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย View href
ดาวน์โหลดไฟล์ส่วนขยาย View href ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This extension helps the user to quickly view the href of a link without looking elsewhere by appending the href of the link to the title of the link. Thus the title and the href both can be viewed by a single glance. If the size of the href is greater than 50 characters, then it truncates the string upto 50 characters.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | View href |
ID | jfgnoakafnnfkgciganaegpjnnejbimk |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/view-href/jfgnoakafnnfkgciganaegpjnnejbimk |
คำอธิบาย | This extension shows the href of all the links on a page along with its title while hovering |
ขนาดไฟล์ | 3.72 KB |
จำนวนการติดตั้ง | 84 |
เวอร์ชันปัจจุบัน | 1.0 |
อัปเดตครั้งล่าสุด | 2014-07-07 |
วันที่เผยแพร่ | 2014-07-07 |
ผู้พัฒนา | https://rajbhadra.com |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "View href", "short_name": "see href", "description": "This extension shows the href of all the links on a page along with its title while hovering", "version": "1.0", "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "contentscript.js" ] } ] } |