New Address Bar

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

What is New Address Bar?

New Address Bar is a Chrome extension developed by HiSoft, and its main feature is "Providing a new way to search or go to a web page.".

Extension Screenshots

screenshot
screenshot
screenshot

Download New Address Bar Extension CRX File

Download New Address Bar extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name New Address Bar New Address Bar
ID pjpbjboafkcbfpgiodfpfbehkjobdppe
Official URL https://chromewebstore.google.com/detail/new-address-bar/pjpbjboafkcbfpgiodfpfbehkjobdppe
Description Providing a new way to search or go to a web page.
File Size 22.02 KB
Installation Count 394
Current Version 1.0.0.8
Last Updated 2022-02-02
Publish Date 2018-05-28
Rating 4.80/5 Total 5 Ratings
Developer HiSoft
Email [email protected]
Payment Type free
Extension Website https://sites.google.com/view/crx/home#h.p_yQlLjva2EMDE
Help Page URL https://sites.google.com/view/crx/home#h.p_yQlLjva2EMDE
Supported Languages 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'"
}