Productivity Pigeon
Block sites simply!
什么是Productivity Pigeon?
Productivity Pigeon是由a9开发的Chrome扩展程序,该扩展的主要功能是“Block sites simply!”。
扩展截图
下载Productivity Pigeon扩展crx文件
下载Productivity Pigeon扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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\/*" ] } |