Zen YouTube: Distraction free youtube
Removes feed and recommendations from YouTube so that you can have a distraction free focused session
Zen YouTube: Distraction free youtubeとは何ですか?
Zen YouTube: Distraction free youtubeはVishnu Gtによって開発されたChromeの拡張機能で、その主な機能は「Removes feed and recommendations from YouTube so that you can have a distraction free focused session」です。
拡張機能のスクリーンショット
Zen YouTube: Distraction free youtube拡張機能のCRXファイルをダウンロード
Zen YouTube: Distraction free youtube拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
This extension helps you have a distraction free YouTube session by removing the recommendations and your home page feed so that you don't end up watching YouTube for hours.
Github Link: https://github.com/vishnugt/Zen-Youtube 拡張機能の基本情報
| 名前 | |
| ID | ibcpcdiajmfmkieocebkoiofgdbbecel |
| 公式URL | https://chromewebstore.google.com/detail/zen-youtube-distraction-f/ibcpcdiajmfmkieocebkoiofgdbbecel |
| 説明 | Removes feed and recommendations from YouTube so that you can have a distraction free focused session |
| ファイルサイズ | 10.31 KB |
| インストール数 | 6,000 |
| 現在のバージョン | 2.0.0 |
| 最終更新日 | 2022-02-09 |
| 公開日 | 2021-10-24 |
| 評価 | 5.00/5 合計 21 レビュー |
| 開発者 | Vishnu Gt |
| Eメール | [email protected] |
| 支払い方法 | free |
| 拡張機能のウェブサイト | https://github.com/vishnugt/Zen-Youtube |
| ヘルプページのURL | https://github.com/vishnugt/Zen-Youtube |
| 対応言語 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Zen YouTube: Distraction free youtube",
"version": "2.0.0",
"manifest_version": 2,
"description": "Removes feed and recommendations from YouTube so that you can have a distraction free focused session",
"homepage_url": "https:\/\/github.com\/vishnugt\/Zen-Youtube",
"icons": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"permissions": [
"https:\/\/www.youtube.com\/*",
"storage"
],
"browser_action": {
"default_popup": "popup\/popup.html"
},
"content_scripts": [
{
"run_at": "document_start",
"matches": [
"https:\/\/www.youtube.com\/*"
],
"js": [
"inject.js"
],
"all_frames": true
}
]
} | |