Titles On Youtube Links
Fetches and displays titles of youtube links on mouse-over. Never get rickrolled again!
Titles On Youtube Linksคืออะไร?
Titles On Youtube Links เป็นส่วนขยายของ Chrome ที่พัฒนาโดย jozxyqk และคุณลักษณะหลักของมันคือ "Fetches and displays titles of youtube links on mouse-over. Never get rickrolled again!"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Titles On Youtube Links
ดาวน์โหลดไฟล์ส่วนขยาย Titles On Youtube Links ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Displays a custom "title text" with video titles when you mouse-over youtube links. Designed to be very light-weight and unobtrusive. Specifically, it catches hover events on links, uses the youtube API to fetch the title (if not already cached), and displays it by creating apositioned above the link with the title.ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ Titles On Youtube Links ID lkkpcpneigfenfmcbpllkkfahcmhhhjl URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/titles-on-youtube-links/lkkpcpneigfenfmcbpllkkfahcmhhhjl คำอธิบาย Fetches and displays titles of youtube links on mouse-over. Never get rickrolled again! ขนาดไฟล์ 38.82 KB จำนวนการติดตั้ง 168 เวอร์ชันปัจจุบัน 2.0 อัปเดตครั้งล่าสุด 2020-04-08 วันที่เผยแพร่ 2020-04-07 คะแนน 4.33/5 รวมทั้งหมด 3 คะแนน ผู้พัฒนา jozxyqk ประเภทการชำระเงิน free เว็บไซต์ส่วนขยาย https://github.com/pknowles/titlesonyoutubelinks URL หน้าช่วยเหลือ https://github.com/pknowles/titlesonyoutubelinks/issues ภาษาที่รองรับ en manifest.json { "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Titles On Youtube Links", "short_name": "Youtube Link Titles", "description": "Fetches and displays titles of youtube links on mouse-over. Never get rickrolled again!", "version": "2.0", "icons": { "128": "icon128.png" }, "background": { "scripts": [ "jquery-2.2.0.min.js", "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "" ], "exclude_matches": [ "*:\/\/*.youtube.com\/*" ], "js": [ "jquery-2.2.0.min.js", "content.js" ] } ] }