Titles On Youtube Links
Fetches and displays titles of youtube links on mouse-over. Never get rickrolled again!
Titles On Youtube Links là gì?
Titles On Youtube Links là một tiện ích mở rộng Chrome được phát triển bởi jozxyqk, và tính năng chính của nó là "Fetches and displays titles of youtube links on mouse-over. Never get rickrolled again!".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Titles On Youtube Links
Tải xuống các tệp mở rộng Titles On Youtube Links dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên Titles On Youtube Links ID lkkpcpneigfenfmcbpllkkfahcmhhhjl URL Chính Thức https://chromewebstore.google.com/detail/titles-on-youtube-links/lkkpcpneigfenfmcbpllkkfahcmhhhjl Mô tả Fetches and displays titles of youtube links on mouse-over. Never get rickrolled again! Kích Thước Tệp 38.82 KB Số Lần Cài Đặt 168 Phiên Bản Hiện Tại 2.0 Cập Nhật Lần Cuối 2020-04-08 Ngày Phát Hành 2020-04-07 Đánh Giá 4.33/5 Tổng số 3 Đánh Giá Nhà Phát Triển jozxyqk Loại Thanh Toán free Trang Web Mở Rộng https://github.com/pknowles/titlesonyoutubelinks URL Trang Trợ Giúp https://github.com/pknowles/titlesonyoutubelinks/issues Ngôn Ngữ Được Hỗ Trợ 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" ] } ] }