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
公式URL 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
Eメール [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'"
}