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 с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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" ] } |