New Address Bar

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

Was ist New Address Bar?

New Address Bar ist eine Chrome-Erweiterung, die von HiSoft entwickelt wurde, und ihr Hauptmerkmal ist "Providing a new way to search or go to a web page.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

New Address Bar-Erweiterungs-CRX-Datei herunterladen

Laden Sie New Address Bar-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name New Address Bar New Address Bar
ID pjpbjboafkcbfpgiodfpfbehkjobdppe
Offizielle URL https://chromewebstore.google.com/detail/new-address-bar/pjpbjboafkcbfpgiodfpfbehkjobdppe
Beschreibung Providing a new way to search or go to a web page.
Dateigröße 22.02 KB
Installationsanzahl 394
Aktuelle Version 1.0.0.8
Letztes Update 2022-02-02
Veröffentlichungsdatum 2018-05-28
Bewertung 4.80/5 Insgesamt 5 Bewertungen
Entwickler HiSoft
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://sites.google.com/view/crx/home#h.p_yQlLjva2EMDE
Hilfeseite URL https://sites.google.com/view/crx/home#h.p_yQlLjva2EMDE
Unterstützte Sprachen 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'"
}