Hide YouTube™ Video
Hide YouTube video
Hide YouTube™ Videoとは何ですか?
Hide YouTube™ VideoはCettoanaによって開発されたChromeの拡張機能で、その主な機能は「Hide YouTube video」です。
拡張機能のスクリーンショット
Hide YouTube™ Video拡張機能のCRXファイルをダウンロード
Hide YouTube™ Video拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
# Feature - Hide Youtube video, listen to music without showing video - Hide all recommended video's thumbnails ---------------------------------------- If you have any problems or suggestions, welcome to create an issue in the github repository: https://github.com/cettoana/hide-youtube-video
拡張機能の基本情報
名前 | Hide YouTube™ Video |
ID | lminokaobchppnocfchcjcenlmodehmi |
公式URL | https://chromewebstore.google.com/detail/hide-youtube-video/lminokaobchppnocfchcjcenlmodehmi |
説明 | Hide YouTube video |
ファイルサイズ | 11.63 KB |
インストール数 | 73 |
現在のバージョン | 0.1.1 |
最終更新日 | 2019-01-03 |
公開日 | 2019-01-03 |
評価 | 5.00/5 合計 2 レビュー |
開発者 | Cettoana |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://github.com/cettoana/hide-youtube-video |
ヘルプページのURL | https://github.com/cettoana/hide-youtube-video |
対応言語 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Hide YouTube\u2122 Video", "version": "0.1.1", "description": "Hide YouTube video", "background": { "scripts": [ "dist\/background.js" ], "persistent": false }, "permissions": [ "https:\/\/www.youtube.com\/*", "declarativeContent", "tabs", "activeTab", "storage" ], "page_action": { "default_popup": "popup.html", "default_icon": { "16": "images\/image_16.png", "32": "images\/image_32.png", "48": "images\/image_48.png", "128": "images\/image_128.png" } }, "icons": { "16": "images\/image_16.png", "32": "images\/image_32.png", "48": "images\/image_48.png", "128": "images\/image_128.png" }, "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/*" ], "js": [ "dist\/insertCSS.js", "dist\/removeCSS.js" ], "css": [ "styles\/default.css" ], "run_at": "document_start" } ] } |