Chrome Tasks
This extension replaces the new tab page with an app for managing Google Tasks
ما هو Chrome Tasks؟
Chrome Tasks هو إضافة Chrome تم تطويرها بواسطة http://www.codeboss.se، والميزة الرئيسية لها هي "This extension replaces the new tab page with an app for managing Google Tasks".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Chrome Tasks
قم بتنزيل ملفات الامتداد Chrome Tasks بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Replaces the default new tab page in Chrome with an app for managing your google tasks.
معلومات أساسية عن التمديد
الاسم | |
ID | kihfdbcaikfhlopdnaiokmogkhbofmgo |
عنوان URL الرسمي | 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" ] } |