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 公式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" ] } ] }