Youtube Plus
Experience seamless video control like never before with our customizable playback speed feature for MP4 videos. Watch and…
O que é Youtube Plus?
Youtube Plus é uma extensão do Chrome desenvolvida por TalentedB, e sua principal característica é "Experience seamless video control like never before with our customizable playback speed feature for MP4 videos. Watch and…".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Youtube Plus
Baixe arquivos de extensão Youtube Plus no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | Youtube Plus |
ID | cedpplfbcjacmflnlglnebkglbibkegk |
URL Oficial | https://chromewebstore.google.com/detail/youtube-plus/cedpplfbcjacmflnlglnebkglbibkegk |
Descrição | Experience seamless video control like never before with our customizable playback speed feature for MP4 videos. Watch and… |
Tamanho do Arquivo | 70.09 KB |
Contagem de Instalações | 60 |
Versão Atual | 1.0 |
Última Atualização | 2023-02-25 |
Data de Publicação | 2023-02-21 |
Classificação | 5.00/5 Total de 9 Avaliações |
Desenvolvedor | TalentedB |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/TalentedB/Youtube-Plus |
URL da Página de Ajuda | https://github.com/TalentedB/Youtube-Plus |
Idiomas Suportados | 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" ] } |