Good Morning
Be more productive each morning by avoiding distracting websites
什么是Good Morning?
Good Morning是由Travis Wimer开发的Chrome扩展程序,该扩展的主要功能是“Be more productive each morning by avoiding distracting websites”。
扩展截图
下载Good Morning扩展crx文件
下载Good Morning扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
You've probably heard that most successful people know how to get work done in the morning. Good Morning is an extension to help you be more productive during those early hours by: - Blocking common distracting sites - Allowing you to add/remove sites to block - Giving you the option to bypass the blocker on a site for 5 minutes - Automatically letting you browse freely after noon
扩展基本信息
名称 | Good Morning |
ID | icjnjamlfgbdinjffhckkbgdpkddnlnk |
官方URL | https://chromewebstore.google.com/detail/good-morning/icjnjamlfgbdinjffhckkbgdpkddnlnk |
简介 | Be more productive each morning by avoiding distracting websites |
文件大小 | 214 KB |
安装次数 | 50 |
当前版本 | 0.0.3 |
更新时间 | 2013-09-07 |
上架时间 | 2013-09-07 |
评分 | 4.00/5 共4次评分 |
开发者 | Travis Wimer |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Good Morning", "description": "Be more productive each morning by avoiding distracting websites", "version": "0.0.3", "permissions": [ "tabs" ], "browser_action": { "default_icon": "images\/icon_128.png", "default_popup": "popup.html" }, "icons": { "16": "images\/icon_16.png", "48": "images\/icon_48.png", "128": "images\/icon_128.png" }, "background": { "scripts": [ "scripts\/request_handler.js" ] }, "content_scripts": [ { "js": [ "scripts\/jquery-2.0.1.min.js", "scripts\/redirect.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "run_at": "document_start" } ], "web_accessible_resources": [ "scripts\/jquery-2.0.1.min.map" ] } |