Hello Tab

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

Cos'è Hello Tab?

Hello Tab è un'estensione di Chrome sviluppata da https://hellotab.com, e la sua funzione principale è "Hello Tab replaces your new tab page with random thoughts from others".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Hello Tab

Scarica i file di estensione Hello Tab in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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!                    

Informazioni di Base sull'Estensione

Nome Hello Tab Hello Tab
ID nimdmcfjenibfldkceoegchnicmfagfb
URL Ufficiale https://chromewebstore.google.com/detail/hello-tab/nimdmcfjenibfldkceoegchnicmfagfb
Descrizione Hello Tab replaces your new tab page with random thoughts from others
Dimensione del File 124 KB
Conteggio Installazioni 434
Versione Corrente 1.3.6
Ultimo Aggiornamento 2015-09-27
Data di Pubblicazione 2015-09-27
Valutazione 4.60/5 Totale 20 Valutazioni
Sviluppatore https://hellotab.com
Tipo di Pagamento free
Sito Web dell'Estensione https://hellotab.com
URL della Pagina di Aiuto https://hellotab.com#faq
Lingue Supportate 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"
    ]
}