Tunnel Focus

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

Tunnel Focusとは何ですか?

Tunnel Focusはthemacrochipによって開発されたChromeの拡張機能で、その主な機能は「Block distractions like social media feeds and recommendation sections. No configuration needed.」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot

Tunnel Focus拡張機能のCRXファイルをダウンロード

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
Eメール [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\/*"
    ]
}