Tunnel Focus

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

Tunnel Focus là gì?

Tunnel Focus là một tiện ích mở rộng Chrome được phát triển bởi themacrochip, và tính năng chính của nó là "Block distractions like social media feeds and recommendation sections. No configuration needed.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Tunnel Focus

Tải xuống các tệp mở rộng Tunnel Focus dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Tunnel Focus Tunnel Focus
ID hbekjlhfmkgfnohmkodgekodmhhgfjfj
URL Chính Thức https://chromewebstore.google.com/detail/tunnel-focus/hbekjlhfmkgfnohmkodgekodmhhgfjfj
Mô tả Block distractions like social media feeds and recommendation sections. No configuration needed.
Kích Thước Tệp 461 KB
Số Lần Cài Đặt 18
Phiên Bản Hiện Tại 1.7.0
Cập Nhật Lần Cuối 2021-03-09
Ngày Phát Hành 2018-06-03
Đánh Giá 4.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển themacrochip
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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\/*"
    ]
}