Disable YouTube Cards
Disable end cards that show during the last 5-20 seconds of a video.
O que é Disable YouTube Cards?
Disable YouTube Cards é uma extensão do Chrome desenvolvida por Techniat, e sua principal característica é "Disable end cards that show during the last 5-20 seconds of a video.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Disable YouTube Cards
Baixe arquivos de extensão Disable YouTube Cards 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
Block all cards that blocking some content! Also you can Block: ✓ End Cards are a part of the video that show during the last 5-20 seconds of a video. ✓ Cards a small rectangular box, or teaser, appear in the top right corner of the video. ✓ Channel Icon is a part of the video that show during the start of a video.
Informações Básicas da Extensão
Nome | |
ID | cabbicmkgndkkhcfpelkfdahnfgefefn |
URL Oficial | https://chrome.google.com/webstore/detail/disable-youtube-cards/cabbicmkgndkkhcfpelkfdahnfgefefn |
Descrição | Disable end cards that show during the last 5-20 seconds of a video. |
Tamanho do Arquivo | 35.58 KB |
Contagem de Instalações | 1,000 |
Versão Atual | 1.0 |
Última Atualização | 2017-12-14 |
Data de Publicação | 2017-12-14 |
Classificação | 5.00/5 Total de 16 Avaliações |
Desenvolvedor | Techniat |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Disable YouTube Cards", "description": "Disable end cards that show during the last 5-20 seconds of a video.", "version": "1.0", "permissions": [ "tabs", "https:\/\/www.youtube.com\/*", "contextMenus", "storage" ], "background": { "scripts": [ "background.js" ] }, "options_page": "options\/options.html", "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/*" ], "js": [ "content\/content.js" ], "run_at": "document_start" } ], "icons": { "16": "images\/icon16.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "browser_action": { "default_icon": "images\/icon19.png", "default_popup": "browser_action\/popup.html" }, "manifest_version": 2 } |