New Address Bar

Providing a new way to search or go to a web page.

Cos'è New Address Bar?

New Address Bar è un'estensione di Chrome sviluppata da HiSoft, e la sua funzione principale è "Providing a new way to search or go to a web page.".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione New Address Bar

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

                        Providing a new way to search or go to a web page. On every web page, you can click on the balloon icon, and you can type a keyword, or an address, and hit Enter. The extension will drive you to the search result or the web page you want.                    

Informazioni di Base sull'Estensione

Nome New Address Bar New Address Bar
ID pjpbjboafkcbfpgiodfpfbehkjobdppe
URL Ufficiale https://chromewebstore.google.com/detail/new-address-bar/pjpbjboafkcbfpgiodfpfbehkjobdppe
Descrizione Providing a new way to search or go to a web page.
Dimensione del File 22.02 KB
Conteggio Installazioni 394
Versione Corrente 1.0.0.8
Ultimo Aggiornamento 2022-02-02
Data di Pubblicazione 2018-05-28
Valutazione 4.80/5 Totale 5 Valutazioni
Sviluppatore HiSoft
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://sites.google.com/view/crx/home#h.p_yQlLjva2EMDE
URL della Pagina di Aiuto https://sites.google.com/view/crx/home#h.p_yQlLjva2EMDE
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "New Address Bar",
    "short_name": "No Address Bar",
    "manifest_version": 2,
    "version": "1.0.0.8",
    "description": "Providing a new way to search or go to a web page.",
    "browser_action": {
        "default_icon": "48.png",
        "default_title": "AddressBar"
    },
    "background": {
        "page": "bgr.html",
        "persistent": false
    },
    "content_scripts": [
        {
            "match_about_blank": true,
            "matches": [
                ""
            ],
            "run_at": "document_end",
            "exclude_globs": [
                "*\/chrome\/newtab*"
            ],
            "css": [
                "gsearch.css"
            ],
            "js": [
                "gsearch.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "128.png"
    ],
    "icons": {
        "48": "48.png",
        "16": "16.png",
        "128": "128.png"
    },
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'"
}