Youtube Plus
Experience seamless video control like never before with our customizable playback speed feature for MP4 videos. Watch and…
Vad är Youtube Plus?
Youtube Plus är en Chrome-tillägg utvecklad av TalentedB, och dess huvudfunktion är "Experience seamless video control like never before with our customizable playback speed feature for MP4 videos. Watch and…".
Tilläggsskärmbilder
Ladda ner Youtube Plus-förlängningens CRX-fil
Ladda ner Youtube Plus-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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.
Grundläggande Information om Tillägg
Namn | Youtube Plus |
ID | cedpplfbcjacmflnlglnebkglbibkegk |
Officiell webbadress | https://chromewebstore.google.com/detail/youtube-plus/cedpplfbcjacmflnlglnebkglbibkegk |
Beskrivning | Experience seamless video control like never before with our customizable playback speed feature for MP4 videos. Watch and… |
Filstorlek | 70.09 KB |
Antal Installationer | 60 |
Aktuell Version | 1.0 |
Senast Uppdaterad | 2023-02-25 |
Publiceringsdatum | 2023-02-21 |
Betyg | 5.00/5 Totalt 9 Betyg |
Utvecklare | TalentedB |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://github.com/TalentedB/Youtube-Plus |
Hjälpsida URL | https://github.com/TalentedB/Youtube-Plus |
Stödda Språk | 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" ] } |