Productivity Pigeon
Block sites simply!
Productivity Pigeon란 무엇입니까?
Productivity Pigeon은(는) a9에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Block sites simply!"입니다.
확장 프로그램 스크린샷
Productivity Pigeon 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Block sites simply! An open source site blocker to keep your productivity up and block distracting sites. Keyboard shortcuts available. Ctrl/Cmd-Shift-X to toggle. Others can be customized. Source available here: https://github.com/maxkrieger/productivity-pigeon
확장 프로그램 기본 정보
이름 | Productivity Pigeon |
ID | doiacekollomjlchgjcfnimkepajgoem |
공식 URL | https://chromewebstore.google.com/detail/productivity-pigeon/doiacekollomjlchgjcfnimkepajgoem |
설명 | Block sites simply! |
파일 크기 | 133 KB |
설치 횟수 | 33 |
현재 버전 | 0.1.1 |
최근 업데이트 | 2018-06-11 |
출시 날짜 | 2018-06-11 |
평점 | 5.00/5 총 4 개의 평점 |
개발자 | a9 |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/maxkrieger/productivity-pigeon |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_appName__", "version": "0.1.1", "manifest_version": 2, "description": "__MSG_appDescription__", "icons": { "16": "images\/icon-16.png", "128": "images\/icon-128.png" }, "default_locale": "en", "background": { "scripts": [ "scripts\/background.js" ] }, "permissions": [ "webRequest", "webRequestBlocking", "http:\/\/*\/*", "https:\/\/*\/*", "storage" ], "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "scripts\/contentscript.js" ], "run_at": "document_end", "all_frames": false } ], "browser_action": { "default_icon": { "19": "images\/icon-19.png", "38": "images\/icon-38.png" }, "default_title": "Productivity Pigeon", "default_popup": "popup.html" }, "commands": { "blocking_on": { "description": "Turn blocking of the sites ON" }, "blocking_off": { "description": "Turn blocking of the sites OFF" }, "blocking_toggle": { "suggested_key": { "default": "Ctrl+Shift+X", "mac": "Command+Shift+X" }, "description": "Toggle if sites are blocked" } }, "web_accessible_resources": [ "blocked.html", "images\/*.png", "fonts\/*" ] } |