New Address Bar

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

New Address Bar là gì?

New Address Bar là một tiện ích mở rộng Chrome được phát triển bởi HiSoft, và tính năng chính của nó là "Providing a new way to search or go to a web page.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng New Address Bar

Tải xuống các tệp mở rộng New Address Bar dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên New Address Bar New Address Bar
ID pjpbjboafkcbfpgiodfpfbehkjobdppe
URL Chính Thức https://chromewebstore.google.com/detail/new-address-bar/pjpbjboafkcbfpgiodfpfbehkjobdppe
Mô tả Providing a new way to search or go to a web page.
Kích Thước Tệp 22.02 KB
Số Lần Cài Đặt 394
Phiên Bản Hiện Tại 1.0.0.8
Cập Nhật Lần Cuối 2022-02-02
Ngày Phát Hành 2018-05-28
Đánh Giá 4.80/5 Tổng số 5 Đánh Giá
Nhà Phát Triển HiSoft
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://sites.google.com/view/crx/home#h.p_yQlLjva2EMDE
URL Trang Trợ Giúp https://sites.google.com/view/crx/home#h.p_yQlLjva2EMDE
Ngôn Ngữ Được Hỗ Trợ 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'"
}