Tunnel Focus

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

Tunnel Focusคืออะไร?

Tunnel Focus เป็นส่วนขยายของ Chrome ที่พัฒนาโดย themacrochip และคุณลักษณะหลักของมันคือ "Block distractions like social media feeds and recommendation sections. No configuration needed."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Tunnel Focus

ดาวน์โหลดไฟล์ส่วนขยาย Tunnel Focus ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Tunnel Focus Tunnel Focus
ID hbekjlhfmkgfnohmkodgekodmhhgfjfj
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/tunnel-focus/hbekjlhfmkgfnohmkodgekodmhhgfjfj
คำอธิบาย Block distractions like social media feeds and recommendation sections. No configuration needed.
ขนาดไฟล์ 461 KB
จำนวนการติดตั้ง 18
เวอร์ชันปัจจุบัน 1.7.0
อัปเดตครั้งล่าสุด 2021-03-09
วันที่เผยแพร่ 2018-06-03
คะแนน 4.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา themacrochip
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ 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\/*"
    ]
}