YouTubeHover
A Chrome Extension that allows you to preview videos when you hover on their thumbnails on YouTube.
YouTubeHoverとは何ですか?
YouTubeHoverはSukrit Chhabraによって開発されたChromeの拡張機能で、その主な機能は「A Chrome Extension that allows you to preview videos when you hover on their thumbnails on YouTube.」です。
拡張機能のスクリーンショット
YouTubeHover拡張機能のCRXファイルをダウンロード
YouTubeHover拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
You can preview videos by hovering on their thumbnails. You can choose the settings that work best for you from the options page. Note: The extension does not collect any user data (browsing or otherwise) from youtube.com. Please be sure to leave a review or any feedback you have :)
拡張機能の基本情報
名前 | |
ID | ojbkdiobfdncjfbcmolchhkmcnmhobog |
公式URL | https://chrome.google.com/webstore/detail/youtubehover/ojbkdiobfdncjfbcmolchhkmcnmhobog |
説明 | A Chrome Extension that allows you to preview videos when you hover on their thumbnails on YouTube. |
ファイルサイズ | 8.63 MB |
インストール数 | 479 |
現在のバージョン | 0.1.12 |
最終更新日 | 2018-02-27 |
公開日 | 2018-02-27 |
評価 | 3.91/5 合計 23 レビュー |
開発者 | Sukrit Chhabra |
支払い方法 | free |
拡張機能のウェブサイト | https://github.com/sukritchhabra/YouTubeHover |
ヘルプページのURL | https://github.com/sukritchhabra/YouTubeHover/issues |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "YouTubeHover", "description": "A Chrome Extension that allows you to preview videos when you hover on their thumbnails on YouTube.", "version": "0.1.12", "author": "Sukrit Chhabra", "browser_action": { "default_icon": "imgs\/touch\/icon_96.png", "default_title": "YouTubeHover" }, "options_ui": { "page": "options\/options.html", "chrome_style": true, "open_in_tab": true }, "permissions": [ "storage", "notifications" ], "background": { "scripts": [ "analytics.js", "background.js" ] }, "content_scripts": [ { "js": [ "bower_components\/jquery\/dist\/jquery.min.js", "iframe_api.js", "widgetAPI.js", "options\/defaultSettings.js", "content.js", "controllers\/controllers.min.js" ], "matches": [ "https:\/\/*.youtube.com\/*" ] } ], "content_security_policy": "script-src 'self' 'unsafe-eval' https:\/\/ssl.google-analytics.com https:\/\/s.ytimg.com\/; object-src 'self'" } |