Chrome Tasks
This extension replaces the new tab page with an app for managing Google Tasks
Cos'è Chrome Tasks?
Chrome Tasks è un'estensione di Chrome sviluppata da http://www.codeboss.se, e la sua funzione principale è "This extension replaces the new tab page with an app for managing Google Tasks".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Chrome Tasks
Scarica i file di estensione Chrome Tasks in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
Replaces the default new tab page in Chrome with an app for managing your google tasks.
Informazioni di Base sull'Estensione
Nome | |
ID | kihfdbcaikfhlopdnaiokmogkhbofmgo |
URL Ufficiale | https://chrome.google.com/webstore/detail/chrome-tasks/kihfdbcaikfhlopdnaiokmogkhbofmgo |
Descrizione | This extension replaces the new tab page with an app for managing Google Tasks |
Dimensione del File | 477 KB |
Conteggio Installazioni | 324 |
Versione Corrente | 0.1.1 |
Ultimo Aggiornamento | 2015-06-10 |
Data di Pubblicazione | 2015-06-10 |
Valutazione | 2.80/5 Totale 5 Valutazioni |
Sviluppatore | http://www.codeboss.se |
Tipo di Pagamento | free |
Lingue Supportate | 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" ] } |