YouStopper for YouTube™
Prevents YouTube™ videos autoplay
O que é YouStopper for YouTube™?
YouStopper for YouTube™ é uma extensão do Chrome desenvolvida por Unknown, e sua principal característica é "Prevents YouTube™ videos autoplay".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão YouStopper for YouTube™
Baixe arquivos de extensão YouStopper for YouTube™ 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
Prevents YouTube™ videos from starting to play automatically when you open them. Doesn't affect ads so it's better to use together with an Ad-Blocking extension like uBlock Origin. Doesn't stop autoplaying in playlists. Source available at https://github.com/youstopper-dev/youstopper
Informações Básicas da Extensão
Nome | YouStopper for YouTube™ |
ID | hmfocflebeolgkehnimcchankdjljepb |
URL Oficial | https://chromewebstore.google.com/detail/youstopper-for-youtube/hmfocflebeolgkehnimcchankdjljepb |
Descrição | Prevents YouTube™ videos autoplay |
Tamanho do Arquivo | 51.95 KB |
Contagem de Instalações | 1,482 |
Versão Atual | 0.2 |
Última Atualização | 2018-02-18 |
Data de Publicação | 2018-02-18 |
Classificação | 3.56/5 Total de 41 Avaliações |
Desenvolvedor | Unknown |
Tipo de Pagamento | free |
Idiomas Suportados | en,ru |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "__MSG_extension_name__", "short_name": "YouStopper", "description": "__MSG_extension_description__", "version": "0.2", "default_locale": "en", "icons": { "32": "icons\/youstop_icon_32.png", "48": "icons\/youstop_icon_48.png", "64": "icons\/youstop_icon_64.png", "128": "icons\/youstop_icon_128.png", "512": "icons\/youstop_icon_512.png" }, "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "*:\/\/www.youtube.com\/*" ], "js": [ "content.js" ], "run_at": "document_start" } ], "web_accessible_resources": [ "page.js" ], "browser_action": { "default_icon": { "32": "icons\/youstop_icon_32.png", "64": "icons\/youstop_icon_64.png" }, "default_title": "__MSG_ba_click2disable__" }, "permissions": [ "storage" ], "minimum_chrome_version": "50" } |