YouWork

Prevent YouTube distractions.

O que é YouWork?

YouWork é uma extensão do Chrome desenvolvida por https://tash-had.com, e sua principal característica é "Prevent YouTube distractions.".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão YouWork

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

                        UPDATE: You can now click YouTube links directly and have the video show directly on YouWork (without having to search for the video).

YouWork redirects YouTube links to a clean, distraction-free version of YouTube. No "recommended videos", no "related videos", no comment, no likes, no side ads, no distractions.  

This helps prevent binge-watching videos and going down rabbit holes. This way, when you need to watch a video during your work-period, you can do so without the risk of getting distracted through videos that would show up on your YouTube dashboard. 

Right-click YouWork anytime for the option to pause. Click the YouWork icon anytime, to use a popup version. YouWork redirects to https://tash-had.github.io/YouWork/

For any issues, contact me at through the form here: http://t-saqif.com/hello

YouWork has absolutely no association with YouTube, and is simply a tool to enhance productivity.                    

Informações Básicas da Extensão

Nome YouWork YouWork
ID imldehpbfplnfafinfamkneahoonapod
URL Oficial https://chromewebstore.google.com/detail/youwork/imldehpbfplnfafinfamkneahoonapod
Descrição Prevent YouTube distractions.
Tamanho do Arquivo 29.04 KB
Contagem de Instalações 288
Versão Atual 1.3
Última Atualização 2020-12-27
Data de Publicação 2018-03-19
Classificação 4.92/5 Total de 13 Avaliações
Desenvolvedor https://tash-had.com
Email [email protected]
Tipo de Pagamento free
Site da Extensão http://tash-had.com
URL da Página de Ajuda http://tash-had.com
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "YouWork",
    "description": "Prevent YouTube distractions.",
    "version": "1.3",
    "permissions": [
        "activeTab",
        "contextMenus",
        "storage"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "exclude_matches": [
                "https:\/\/www.youtube.com\/embed\/*"
            ],
            "js": [
                "background.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "browser_action": {
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "img\/icon_16.png",
        "32": "img\/icon_32.png",
        "48": "img\/icon_48.png",
        "128": "img\/icon_128.png"
    },
    "manifest_version": 2
}