Youtube Plus
Experience seamless video control like never before with our customizable playback speed feature for MP4 videos. Watch and…
Youtube Plusとは何ですか?
Youtube PlusはTalentedBによって開発されたChromeの拡張機能で、その主な機能は「Experience seamless video control like never before with our customizable playback speed feature for MP4 videos. Watch and…」です。
拡張機能のスクリーンショット
Youtube Plus拡張機能のCRXファイルをダウンロード
Youtube Plus拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Experience seamless video control like never before with our customizable playback speed feature for MP4 videos. Watch and comprehend content at your own pace with ease. Our extension also comes equipped with an ad-skipping feature for YouTube videos, ensuring an uninterrupted viewing experience. Additionally, our extension includes a volume changer feature that allows you to adjust the volume of any video playing, even above or below 100%. No more frustration with slow videos, annoying ads, or limited volume control. Download our extension today and elevate your video playback experience to the next level.
拡張機能の基本情報
名前 | Youtube Plus |
ID | cedpplfbcjacmflnlglnebkglbibkegk |
公式URL | https://chromewebstore.google.com/detail/youtube-plus/cedpplfbcjacmflnlglnebkglbibkegk |
説明 | Experience seamless video control like never before with our customizable playback speed feature for MP4 videos. Watch and… |
ファイルサイズ | 70.09 KB |
インストール数 | 60 |
現在のバージョン | 1.0 |
最終更新日 | 2023-02-25 |
公開日 | 2023-02-21 |
評価 | 5.00/5 合計 9 レビュー |
開発者 | TalentedB |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://github.com/TalentedB/Youtube-Plus |
ヘルプページのURL | https://github.com/TalentedB/Youtube-Plus |
対応言語 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Youtube Plus", "version": "1.0", "icons": { "16": "images\/icon-16.png", "32": "images\/icon-32.png", "48": "images\/icon-48.png", "128": "images\/icon-128.png" }, "action": { "default_title": "Youtube Plus", "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "*:\/\/www.youtube.com\/*" ], "js": [ "adskipper.js" ], "run_at": "document_start", "world": "MAIN" }, { "matches": [ "*:\/\/*\/*" ], "js": [ "volumeInject.js" ], "run_at": "document_end" } ], "permissions": [ "storage", "scripting", "activeTab" ] } |