New Address Bar

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

New Address Barคืออะไร?

New Address Bar เป็นส่วนขยายของ Chrome ที่พัฒนาโดย HiSoft และคุณลักษณะหลักของมันคือ "Providing a new way to search or go to a web page."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย New Address Bar

ดาวน์โหลดไฟล์ส่วนขยาย 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
อีเมล [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'"
}