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是由jozxyqk開發的Chrome擴展程式,該擴展的主要功能是“Fetches and displays titles of youtube links on mouse-over. Never get rickrolled again!”。
擴展截圖
下載Titles On Youtube Links擴展crx文件
下載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 官方網址 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" ] } ] }