ZenTube
Zen mode for YouTube
ZenTubeとは何ですか?
ZenTubeはinversepolarityによって開発されたChromeの拡張機能で、その主な機能は「Zen mode for YouTube」です。
拡張機能のスクリーンショット
ZenTube拡張機能のCRXファイルをダウンロード
ZenTube拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Consume YouTube more productively by making it less addictive/distracting. Hide unncessary elements or mix-n-match which elements to show, get your peace of mind back! Extension is completely open source. 拡張機能の基本情報
| 名前 | |
| ID | ghfgfebinnjlnbidclplakjfielgpokd |
| 公式URL | https://chromewebstore.google.com/detail/zentube/ghfgfebinnjlnbidclplakjfielgpokd |
| 説明 | Zen mode for YouTube |
| ファイルサイズ | 101 KB |
| インストール数 | 81 |
| 現在のバージョン | 1.1.4 |
| 最終更新日 | 2023-04-20 |
| 公開日 | 2022-09-12 |
| 評価 | 5.00/5 合計 3 レビュー |
| 開発者 | inversepolarity |
| Eメール | [email protected] |
| 支払い方法 | free |
| 拡張機能のウェブサイト | https://github.com/inversepolarity/ZenTube |
| ヘルプページのURL | https://evenzero.in/experiments |
| 対応言語 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"description": "Zen mode for YouTube",
"manifest_version": 3,
"name": "ZenTube",
"version": "1.1.4",
"author": "surajsharma",
"homepage_url": "https:\/\/evenzero.in",
"icons": {
"144": "icons\/favicon4_144.png"
},
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"*:\/\/*.youtube.com\/*"
],
"js": [
"browser-polyfill.js",
"defaultSettings.js",
"contentscript.js",
"emoji.js"
],
"run_at": "document_start"
}
],
"action": {
"default_icon": "icons\/favicon4_144.png",
"default_title": "Zen Mode for Youtube",
"default_popup": "options\/options.html"
},
"permissions": [
"storage",
"tabs",
"scripting",
"activeTab"
],
"host_permissions": [
"*:\/\/*.youtube.com\/*"
]
} | |