Chrome Tasks
This extension replaces the new tab page with an app for managing Google Tasks
什么是Chrome Tasks?
Chrome Tasks是由http://www.codeboss.se开发的Chrome扩展程序,该扩展的主要功能是“This extension replaces the new tab page with an app for managing Google Tasks”。
扩展截图
下载Chrome Tasks扩展crx文件
下载Chrome Tasks扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Replaces the default new tab page in Chrome with an app for managing your google tasks. 扩展基本信息
| 名称 | |
| ID | kihfdbcaikfhlopdnaiokmogkhbofmgo |
| 官方URL | https://chrome.google.com/webstore/detail/chrome-tasks/kihfdbcaikfhlopdnaiokmogkhbofmgo |
| 简介 | This extension replaces the new tab page with an app for managing Google Tasks |
| 文件大小 | 477 KB |
| 安装次数 | 324 |
| 当前版本 | 0.1.1 |
| 更新时间 | 2015-06-10 |
| 上架时间 | 2015-06-10 |
| 评分 | 2.80/5 共5次评分 |
| 开发者 | http://www.codeboss.se |
| 付费类型 | free |
| 支持的语言 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Chrome Tasks",
"description": "This extension replaces the new tab page with an app for managing Google Tasks",
"version": "0.1.1",
"chrome_url_overrides": {
"newtab": "myPage.html"
},
"content_scripts": [
{
"matches": [
"http:\/\/www.google.com\/robots.txt*"
],
"js": [
"oauth2\/oauth2_inject.js"
],
"run_at": "document_start"
}
],
"icons": {
"128": "icon128.png"
},
"permissions": [
"activeTab",
"https:\/\/www.googleapis.com\/",
"https:\/\/accounts.google.com\/o\/oauth2\/token"
],
"web_accessible_resources": [
"oauth2\/oauth2.html"
]
} | |