Hello Tab

Hello Tab replaces your new tab page with random thoughts from others

O que é Hello Tab?

Hello Tab é uma extensão do Chrome desenvolvida por https://hellotab.com, e sua principal característica é "Hello Tab replaces your new tab page with random thoughts from others".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Hello Tab

Baixe arquivos de extensão Hello Tab 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

                        Use this chrome extension to anonymously share a thought or simply get inspired by others thoughts every time you open a new tab (cmd+T).

Share whatever is on your mind, as long as it's less than 200 characters.

Want to use more than one new-tab-extension at once? Check out "Cycle Tab" (http://cycletab.rocks) on the chrome store!                    

Informações Básicas da Extensão

Nome Hello Tab Hello Tab
ID nimdmcfjenibfldkceoegchnicmfagfb
URL Oficial https://chromewebstore.google.com/detail/hello-tab/nimdmcfjenibfldkceoegchnicmfagfb
Descrição Hello Tab replaces your new tab page with random thoughts from others
Tamanho do Arquivo 124 KB
Contagem de Instalações 434
Versão Atual 1.3.6
Última Atualização 2015-09-27
Data de Publicação 2015-09-27
Classificação 4.60/5 Total de 20 Avaliações
Desenvolvedor https://hellotab.com
Tipo de Pagamento free
Site da Extensão https://hellotab.com
URL da Página de Ajuda https://hellotab.com#faq
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Hello Tab",
    "description": "Hello Tab replaces your new tab page with random thoughts from others",
    "version": "1.3.6",
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon128.png",
        "128": "images\/icon128.png"
    },
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "run_at": "document_start",
            "matches": [
                "https:\/\/hellotab.com\/*"
            ],
            "js": [
                "js\/content_script.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "newtab.html"
    ],
    "chrome_url_overrides": {
        "newtab": "newtab.html"
    },
    "permissions": [
        "https:\/\/hellotab.com\/",
        "storage"
    ]
}