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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
عنوان صفحة المساعدة 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'"
}