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.”。
扩展截图
下载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 |
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\/*" ] } |