Chrome Tasks

This extension replaces the new tab page with an app for managing Google Tasks

O que é Chrome Tasks?

Chrome Tasks é uma extensão do Chrome desenvolvida por http://www.codeboss.se, e sua principal característica é "This extension replaces the new tab page with an app for managing Google Tasks".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Chrome Tasks

Baixe arquivos de extensão Chrome Tasks no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        Replaces the default new tab page in Chrome with an app for managing your google tasks.                    

Informações Básicas da Extensão

Nome Chrome Tasks Chrome Tasks
ID kihfdbcaikfhlopdnaiokmogkhbofmgo
URL Oficial https://chrome.google.com/webstore/detail/chrome-tasks/kihfdbcaikfhlopdnaiokmogkhbofmgo
Descrição This extension replaces the new tab page with an app for managing Google Tasks
Tamanho do Arquivo 477 KB
Contagem de Instalações 324
Versão Atual 0.1.1
Última Atualização 2015-06-10
Data de Publicação 2015-06-10
Classificação 2.80/5 Total de 5 Avaliações
Desenvolvedor http://www.codeboss.se
Tipo de Pagamento free
Idiomas Suportados 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"
    ]
}