HTML New Tab

Design your own new tab page with HTML, CSS, and JavaScript!

Cos'è HTML New Tab?

HTML New Tab è un'estensione di Chrome sviluppata da Josh Pullen, e la sua funzione principale è "Design your own new tab page with HTML, CSS, and JavaScript!".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione HTML New Tab

Scarica i file di estensione HTML New 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

                        Are you a web developer looking to build a completely custom new tab page for Chrome? 

With HTML New Tab page, you can write HTML, CSS, and JavaScript code to create your own completely custom new tab page. Whenever you open a new tab, your custom page will appear.                    

Informazioni di Base sull'Estensione

Nome HTML New Tab HTML New Tab
ID ponjalfncfogplhjlmalcbbclbappnaf
URL Ufficiale https://chromewebstore.google.com/detail/html-new-tab/ponjalfncfogplhjlmalcbbclbappnaf
Descrizione Design your own new tab page with HTML, CSS, and JavaScript!
Dimensione del File 175 KB
Conteggio Installazioni 427
Versione Corrente 1.1
Ultimo Aggiornamento 2021-01-24
Data di Pubblicazione 2020-12-22
Valutazione 4.91/5 Totale 11 Valutazioni
Sviluppatore Josh Pullen
Email [email protected]
Tipo di Pagamento free
Lingue Supportate en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "HTML New Tab",
    "description": "Design your own new tab page with HTML, CSS, and JavaScript!",
    "author": "Josh Pullen",
    "version": "1.1",
    "icons": {
        "16": "images\/icon-16.png",
        "24": "images\/icon-24.png",
        "32": "images\/icon-32.png",
        "48": "images\/icon-48.png",
        "128": "images\/icon-128.png"
    },
    "permissions": [
        "storage"
    ],
    "chrome_url_overrides": {
        "newtab": "newtab.html"
    },
    "browser_action": {
        "default_icon": {
            "16": "images\/icon-16.png",
            "24": "images\/icon-24.png",
            "32": "images\/icon-32.png",
            "48": "images\/icon-48.png",
            "128": "images\/icon-128.png"
        }
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    }
}