New Address Bar

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

Apa itu New Address Bar?

New Address Bar adalah ekstensi Chrome yang dikembangkan oleh HiSoft, dan fitur utamanya adalah "Providing a new way to search or go to a web page.".

Screenshot Ekstensi

screenshot
screenshot
screenshot

Unduh Berkas CRX Ekstensi New Address Bar

Unduh file ekstensi New Address Bar dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama New Address Bar New Address Bar
ID pjpbjboafkcbfpgiodfpfbehkjobdppe
URL Resmi https://chromewebstore.google.com/detail/new-address-bar/pjpbjboafkcbfpgiodfpfbehkjobdppe
Deskripsi Providing a new way to search or go to a web page.
Ukuran File 22.02 KB
Jumlah Instalasi 394
Versi Saat Ini 1.0.0.8
Terakhir Diperbarui 2022-02-02
Tanggal Publikasi 2018-05-28
Penilaian 4.80/5 Total 5 Penilaian
Pengembang HiSoft
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://sites.google.com/view/crx/home#h.p_yQlLjva2EMDE
URL Halaman Bantuan https://sites.google.com/view/crx/home#h.p_yQlLjva2EMDE
Bahasa yang Didukung 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'"
}