Tunnel Focus

Block distractions like social media feeds and recommendation sections. No configuration needed.

O que é Tunnel Focus?

Tunnel Focus é uma extensão do Chrome desenvolvida por themacrochip, e sua principal característica é "Block distractions like social media feeds and recommendation sections. No configuration needed.".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Tunnel Focus

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

                        We support Reddit, Facebook, YouTube, Gmail at this time.
✔ Comments on Reddit hidden
✔ Facebook news feed hidden (but not groups or messages)
✔ No autoplay or recommended YouTube videos
✔ Remove distracting and irrelevant search results from YouTube search
✔ Gmail inbox hidden
✔ Toggle the distractions on or off at any time                    

Informações Básicas da Extensão

Nome Tunnel Focus Tunnel Focus
ID hbekjlhfmkgfnohmkodgekodmhhgfjfj
URL Oficial https://chromewebstore.google.com/detail/tunnel-focus/hbekjlhfmkgfnohmkodgekodmhhgfjfj
Descrição Block distractions like social media feeds and recommendation sections. No configuration needed.
Tamanho do Arquivo 461 KB
Contagem de Instalações 18
Versão Atual 1.7.0
Última Atualização 2021-03-09
Data de Publicação 2018-06-03
Classificação 4.00/5 Total de 2 Avaliações
Desenvolvedor themacrochip
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Tunnel Focus",
    "description": "Block distractions like social media feeds and recommendation sections. No configuration needed.",
    "version": "1.7.0",
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "dist\/popup.html"
    },
    "permissions": [
        "storage"
    ],
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Alt+Shift+F"
            }
        }
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.facebook.com\/*"
            ],
            "js": [
                "dist\/jquery-3.1.1.min.js",
                "dist\/main.js"
            ],
            "run_at": "document_start",
            "all_frames": false
        },
        {
            "matches": [
                "*:\/\/mail.google.com\/*"
            ],
            "js": [
                "dist\/jquery-3.1.1.min.js",
                "dist\/main.js"
            ],
            "run_at": "document_start",
            "all_frames": false
        },
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                "dist\/jquery-3.1.1.min.js",
                "dist\/main.js"
            ],
            "run_at": "document_start",
            "all_frames": false
        },
        {
            "matches": [
                "*:\/\/*.reddit.com\/*"
            ],
            "js": [
                "dist\/jquery-3.1.1.min.js",
                "dist\/main.js"
            ],
            "run_at": "document_start",
            "all_frames": false
        }
    ],
    "web_accessible_resources": [
        "css\/*"
    ]
}