Tunnel Focus

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

What is Tunnel Focus?

Tunnel Focus is a Chrome extension developed by themacrochip, and its main feature is "Block distractions like social media feeds and recommendation sections. No configuration needed.".

Extension Screenshots

screenshot
screenshot
screenshot

Download Tunnel Focus Extension CRX File

Download Tunnel Focus extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name Tunnel Focus Tunnel Focus
ID hbekjlhfmkgfnohmkodgekodmhhgfjfj
Official URL https://chromewebstore.google.com/detail/tunnel-focus/hbekjlhfmkgfnohmkodgekodmhhgfjfj
Description Block distractions like social media feeds and recommendation sections. No configuration needed.
File Size 461 KB
Installation Count 18
Current Version 1.7.0
Last Updated 2021-03-09
Publish Date 2018-06-03
Rating 4.00/5 Total 2 Ratings
Developer themacrochip
Email [email protected]
Payment Type free
Supported Languages 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\/*"
    ]
}