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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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\/*" ] } |