New Address Bar

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

什麼是New Address Bar?

New Address Bar是由HiSoft開發的Chrome擴展程式,該擴展的主要功能是“Providing a new way to search or go to a web page.”。

擴展截圖

screenshot
screenshot
screenshot

下載New Address Bar擴展crx文件

下載New Address Bar擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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.                    

擴展基本資訊

名稱 New Address Bar New Address Bar
ID pjpbjboafkcbfpgiodfpfbehkjobdppe
官方網址 https://chromewebstore.google.com/detail/new-address-bar/pjpbjboafkcbfpgiodfpfbehkjobdppe
簡介 Providing a new way to search or go to a web page.
檔案大小 22.02 KB
安裝次數 394
目前版本 1.0.0.8
更新時間 2022-02-02
上架時間 2018-05-28
評分 4.80/5 共 5 次評分
開發者 HiSoft
電子郵箱 [email protected]
付費類型 free
擴展官網 https://sites.google.com/view/crx/home#h.p_yQlLjva2EMDE
說明頁面URL https://sites.google.com/view/crx/home#h.p_yQlLjva2EMDE
支援的語言 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'"
}