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 |
官方網址 | 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" ] } |