Chrome Tasks
This extension replaces the new tab page with an app for managing Google Tasks
Apa itu Chrome Tasks?
Chrome Tasks adalah ekstensi Chrome yang dikembangkan oleh http://www.codeboss.se, dan fitur utamanya adalah "This extension replaces the new tab page with an app for managing Google Tasks".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Chrome Tasks
Unduh file ekstensi Chrome Tasks dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
Replaces the default new tab page in Chrome with an app for managing your google tasks.
Informasi Dasar Ekstensi
Nama | |
ID | kihfdbcaikfhlopdnaiokmogkhbofmgo |
URL Resmi | https://chrome.google.com/webstore/detail/chrome-tasks/kihfdbcaikfhlopdnaiokmogkhbofmgo |
Deskripsi | This extension replaces the new tab page with an app for managing Google Tasks |
Ukuran File | 477 KB |
Jumlah Instalasi | 324 |
Versi Saat Ini | 0.1.1 |
Terakhir Diperbarui | 2015-06-10 |
Tanggal Publikasi | 2015-06-10 |
Penilaian | 2.80/5 Total 5 Penilaian |
Pengembang | http://www.codeboss.se |
Tipe Pembayaran | free |
Bahasa yang Didukung | 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" ] } |