New Tab URL

Use a custom URL as the New Tab page without losing address bar focus

Cos'è New Tab URL?

New Tab URL è un'estensione di Chrome sviluppata da Matthias Vogt, e la sua funzione principale è "Use a custom URL as the New Tab page without losing address bar focus".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione New Tab URL

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

                        Choose a custom URL to be displayed on the New Tab page.
The address bar stays focused when opening a new tab.                    

Informazioni di Base sull'Estensione

Nome New Tab URL New Tab URL
ID fjmejipbaegkajpfkghaapfhdempldpd
URL Ufficiale https://chromewebstore.google.com/detail/new-tab-url/fjmejipbaegkajpfkghaapfhdempldpd
Descrizione Use a custom URL as the New Tab page without losing address bar focus
Dimensione del File 488 KB
Conteggio Installazioni 430
Versione Corrente 0.1.2
Ultimo Aggiornamento 2022-10-10
Data di Pubblicazione 2016-04-17
Valutazione 4.54/5 Totale 13 Valutazioni
Sviluppatore Matthias Vogt
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/matthias-vogt/new-tab-url
URL della Pagina di Aiuto https://github.com/matthias-vogt/new-tab-url
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "New Tab URL",
    "description": "Use a custom URL as the New Tab page without losing address bar focus",
    "version": "0.1.2",
    "chrome_url_overrides": {
        "newtab": "new-tab.html"
    },
    "options_page": "options.html",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "icons": {
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    },
    "browser_action": {
        "default_icon": {
            "48": "icons\/48.png",
            "128": "icons\/128.png"
        },
        "default_popup": "options.html",
        "default_title": "New Tab URL"
    },
    "permissions": [
        "storage",
        "file:\/\/\/*"
    ],
    "manifest_version": 2
}