Chrome Tasks
This extension replaces the new tab page with an app for managing Google Tasks
Wat is Chrome Tasks?
Chrome Tasks is een Chrome-extensie ontwikkeld door http://www.codeboss.se, en de belangrijkste functie is "This extension replaces the new tab page with an app for managing Google Tasks".
Extensie Screenshots
Download het CRX-bestand van de extensie Chrome Tasks
Download Chrome Tasks-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
Replaces the default new tab page in Chrome with an app for managing your google tasks.
Basisinformatie over de Extensie
Naam | |
ID | kihfdbcaikfhlopdnaiokmogkhbofmgo |
Officiële URL | https://chrome.google.com/webstore/detail/chrome-tasks/kihfdbcaikfhlopdnaiokmogkhbofmgo |
Beschrijving | This extension replaces the new tab page with an app for managing Google Tasks |
Bestandsgrootte | 477 KB |
Aantal Installaties | 324 |
Huidige Versie | 0.1.1 |
Laatst Bijgewerkt | 2015-06-10 |
Publicatiedatum | 2015-06-10 |
Beoordeling | 2.80/5 Totaal 5 Beoordelingen |
Ontwikkelaar | http://www.codeboss.se |
Betalingswijze | free |
Ondersteunde Talen | 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" ] } |