PCT Manager
Personal, content, and time manager. Provides tools for goal setting & planning, time management, and content filtering.
什么是PCT Manager?
PCT Manager是由Tollski开发的Chrome扩展程序,该扩展的主要功能是“Personal, content, and time manager. Provides tools for goal setting & planning, time management, and content filtering.”。
扩展截图
下载PCT Manager扩展crx文件
下载PCT Manager扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
扩展基本信息
| 名称 | |
| ID | gpbdmbcehgeedlilhdeolifmboafbcjb |
| 官方URL | https://chromewebstore.google.com/detail/pct-manager/gpbdmbcehgeedlilhdeolifmboafbcjb |
| 简介 | Personal, content, and time manager. Provides tools for goal setting & planning, time management, and content filtering. |
| 文件大小 | 67.55 KB |
| 安装次数 | 153 |
| 当前版本 | 0.4.3 |
| 更新时间 | 2016-10-25 |
| 上架时间 | 2016-10-24 |
| 评分 | 4.22/5 共9次评分 |
| 开发者 | Tollski |
| 付费类型 | free |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "PCT Manager",
"description": "Personal, content, and time manager. Provides tools for goal setting & planning, time management, and content filtering.",
"version": "0.4.3",
"background": {
"scripts": [
"jquery-2.1.4.min.js",
"helperFunctions.js",
"background.js"
]
},
"browser_action": {
"default_icon": {
"19": "images\/icon19.png",
"38": "images\/icon38.png"
},
"default_title": "Safe Browsing",
"default_popup": "pages\/popup.html"
},
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"js": [
"jquery-2.1.4.min.js",
"helperFunctions.js",
"contentScripts\/timeLimitedContent.js",
"contentScripts\/newPageContent.js",
"contentScripts\/notificationsContent.js",
"contentScripts\/genericMessageListener.js",
"contentScripts\/blockedLinks.js",
"contentScripts\/blockedKeywords.js",
"contentScripts\/blockContent.js",
"contentScripts\/timerContent.js"
]
}
],
"icons": {
"16": "images\/icon16.png",
"48": "images\/icon.png"
},
"options_page": "pages\/options.html",
"permissions": [
"activeTab",
"storage",
"tabs"
]
} | |