Chrome Tasks
This extension replaces the new tab page with an app for managing Google Tasks
Vad är Chrome Tasks?
Chrome Tasks är en Chrome-tillägg utvecklad av http://www.codeboss.se, och dess huvudfunktion är "This extension replaces the new tab page with an app for managing Google Tasks".
Tilläggsskärmbilder
Ladda ner Chrome Tasks-förlängningens CRX-fil
Ladda ner Chrome Tasks-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
Replaces the default new tab page in Chrome with an app for managing your google tasks.
Grundläggande Information om Tillägg
Namn | |
ID | kihfdbcaikfhlopdnaiokmogkhbofmgo |
Officiell webbadress | https://chrome.google.com/webstore/detail/chrome-tasks/kihfdbcaikfhlopdnaiokmogkhbofmgo |
Beskrivning | This extension replaces the new tab page with an app for managing Google Tasks |
Filstorlek | 477 KB |
Antal Installationer | 324 |
Aktuell Version | 0.1.1 |
Senast Uppdaterad | 2015-06-10 |
Publiceringsdatum | 2015-06-10 |
Betyg | 2.80/5 Totalt 5 Betyg |
Utvecklare | http://www.codeboss.se |
Betalningssätt | free |
Stödda Språk | 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" ] } |