Youtube Hider
This is a Chrome extension to hide videos and images on YouTube.
Youtube Hiderとは何ですか?
Youtube HiderはMiri Ahnによって開発されたChromeの拡張機能で、その主な機能は「This is a Chrome extension to hide videos and images on YouTube.」です。
拡張機能のスクリーンショット
Youtube Hider拡張機能のCRXファイルをダウンロード
Youtube Hider拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
You can toggle a visibility of a group of Youtube elements on the list below, respectively:
- Video
- Video thumbnail
- User profile photo
Update 1.1 (2019/11/25)
- Added a button to enable or disable all checkboxes. 拡張機能の基本情報
| 名前 | |
| ID | cnaimccmiafebfliaiefkdfmdffgmjph |
| 公式URL | https://chrome.google.com/webstore/detail/youtube-hider/cnaimccmiafebfliaiefkdfmdffgmjph |
| 説明 | This is a Chrome extension to hide videos and images on YouTube. |
| ファイルサイズ | 8.85 KB |
| インストール数 | 60 |
| 現在のバージョン | 1.1 |
| 最終更新日 | 2019-11-29 |
| 公開日 | 2019-11-29 |
| 評価 | 4.25/5 合計 4 レビュー |
| 開発者 | Miri Ahn |
| Eメール | [email protected] |
| 支払い方法 | free |
| ヘルプページのURL | https://github.com/kameru/youtube-hider/issues |
| 対応言語 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Youtube Hider",
"version": "1.1",
"description": "This is a Chrome extension to hide videos and images on YouTube.",
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"content_scripts": [
{
"matches": [
"https:\/\/www.youtube.com\/*"
],
"js": [
"hidingController.js"
]
}
],
"web_accessible_resources": [
"hide_thumb.css",
"hide_video.css",
"hide_icon.css",
"popup.js",
"hidingController.js"
],
"permissions": [
"activeTab",
"storage",
"declarativeContent"
],
"page_action": {
"default_icon": "images\/hide.png",
"default_popup": "popup.html"
},
"manifest_version": 2
} | |