Infocus
Stay focused on the internet with this simple Chrome extension!
Infocus란 무엇입니까?
Infocus은(는) Anton Cao에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Stay focused on the internet with this simple Chrome extension!"입니다.
확장 프로그램 스크린샷
Infocus 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Infocus is a Chrome extension that keeps you focused while you're on the internet. You can input sites that you find distracting (eg. YouTube, Facebook) and Infocus will automatically stop you from visiting these websites by either going back to the previous page, or closing the tab entirely if it is a newly opened tab. If you absolutely have to disable Infocus for something, you'll get to practice some mental math in the process! Infocus is also open source: https://github.com/Anton-Cao/Infocus. If you have feature requests, feel free to open an issue in the GitHub repository!
확장 프로그램 기본 정보
이름 | Infocus |
ID | ojgabebkfpaedailhgeapeedhobgfppf |
공식 URL | https://chromewebstore.google.com/detail/infocus/ojgabebkfpaedailhgeapeedhobgfppf |
설명 | Stay focused on the internet with this simple Chrome extension! |
파일 크기 | 154 KB |
설치 횟수 | 64 |
현재 버전 | 1.4.2 |
최근 업데이트 | 2018-07-12 |
출시 날짜 | 2018-07-11 |
평점 | 5.00/5 총 1 개의 평점 |
개발자 | Anton Cao |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/Anton-Cao/Infocus |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Infocus", "version": "1.4.2", "description": "Stay focused on the internet with this simple Chrome extension!", "author": "Anton Cao", "permissions": [ "notifications", "storage", "tabs", "http:\/\/*\/*", "https:\/\/*\/*" ], "background": { "scripts": [ "js\/background.js" ], "persistent": false }, "options_page": "options.html", "browser_action": { "default_popup": "popup.html", "default_icon": { "16": "images\/infocus16.png", "32": "images\/infocus32.png", "48": "images\/infocus48.png", "128": "images\/infocus128.png" } }, "icons": { "16": "images\/infocus16.png", "32": "images\/infocus32.png", "48": "images\/infocus48.png", "128": "images\/infocus128.png" }, "commands": { "enable": { "suggested_key": { "default": "Ctrl+I", "mac": "Command+I" }, "description": "Turn Infocus on" } }, "manifest_version": 2 } |