Productive Youtube

Remove recommendations page, filter useless channels and speed up videos past 2x. Youtube at times can be very distracting with a…

O que é Productive Youtube?

Productive Youtube é uma extensão do Chrome desenvolvida por daniel.ziorli, e sua principal característica é "Remove recommendations page, filter useless channels and speed up videos past 2x. Youtube at times can be very distracting with a…".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Productive Youtube

Baixe arquivos de extensão Productive 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

                        Remove recommendations page, filter useless channels and speed up videos past 2x. Youtube at times can be very distracting with a recommendations page optimized for watch time who can blame you. By removing it you can use youtube as a search engine instead of a mindless social media platform. Filter the channels you deem productive and increase the speed past 2x to take in information faster. Productive Youtube is designed to remove distraction and let you become the best you.                    

Informações Básicas da Extensão

Nome Productive Youtube Productive Youtube
ID iigjefiodblcogecpmdmpgboghepjcca
URL Oficial https://chromewebstore.google.com/detail/productive-youtube/iigjefiodblcogecpmdmpgboghepjcca
Descrição Remove recommendations page, filter useless channels and speed up videos past 2x. Youtube at times can be very distracting with a…
Tamanho do Arquivo 12.19 KB
Contagem de Instalações 116
Versão Atual 0.5.1
Última Atualização 2019-04-19
Data de Publicação 2019-04-18
Classificação 5.00/5 Total de 2 Avaliações
Desenvolvedor daniel.ziorli
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Productive Youtube",
    "version": "0.5.1",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.youtube.com\/*",
                "*:\/\/www.youtube.ca\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "tabs",
        "storage"
    ],
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": "extension_icon.png"
    },
    "web_accessible_resources": [
        "redirect.html",
        "popup.html"
    ]
}