New Address Bar

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

Qu'est-ce que New Address Bar ?

New Address Bar est une extension Chrome développée par HiSoft, et sa fonction principale est "Providing a new way to search or go to a web page.".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension New Address Bar

Téléchargez les fichiers d'extension New Address Bar au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom New Address Bar New Address Bar
ID pjpbjboafkcbfpgiodfpfbehkjobdppe
URL Officiel https://chromewebstore.google.com/detail/new-address-bar/pjpbjboafkcbfpgiodfpfbehkjobdppe
Description Providing a new way to search or go to a web page.
Taille du Fichier 22.02 KB
Nombre d'Installations 394
Version Actuelle 1.0.0.8
Dernière Mise à Jour 2022-02-02
Date de Publication 2018-05-28
Évaluation 4.80/5 Total 5 Évaluations
Développeur HiSoft
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://sites.google.com/view/crx/home#h.p_yQlLjva2EMDE
URL de la Page d'Aide https://sites.google.com/view/crx/home#h.p_yQlLjva2EMDE
Langues Prises en Charge 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'"
}