Google Search Quick Open

Google search result auto quick open in new tab

ما هو Google Search Quick Open؟

Google Search Quick Open هو إضافة Chrome تم تطويرها بواسطة Josh Chan، والميزة الرئيسية لها هي "Google search result auto quick open in new tab".

لقطات شاشة التمديد

screenshot
screenshot

تحميل ملف CRX للإضافة Google Search Quick Open

قم بتنزيل ملفات الامتداد Google Search Quick Open بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

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

                        Feeling lazy to open all the Google search result links?

This extension can help to auto open the google search result links in the new tabs quickly.

Step:
1. Type your keyword in Google and land on the search result page
2. Click the extension icon or use shortcut (⌥ + A / Alt + A) to open all links

*Icon made by Freepik from www.flaticon.com                    

معلومات أساسية عن التمديد

الاسم Google Search Quick Open Google Search Quick Open
ID mhhaoajilmlcoegdoehficcpcamjbnlf
عنوان URL الرسمي https://chromewebstore.google.com/detail/google-search-quick-open/mhhaoajilmlcoegdoehficcpcamjbnlf
الوصف Google search result auto quick open in new tab
حجم الملف 11.35 KB
عدد التثبيتات 109
النسخة الحالية 2.1.0
آخر تحديث 2023-02-12
تاريخ النشر 2020-08-16
تقييم 5.00/5 مجموع تقييمات 2
المطور Josh Chan
البريد الإلكتروني [email protected]
نوع الدفع free
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Google Search Quick Open",
    "description": "Google search result auto quick open in new tab",
    "version": "2.1.0",
    "manifest_version": 3,
    "default_locale": "en",
    "icons": {
        "16": "icon\/icon-16.png",
        "32": "icon\/icon-32.png",
        "64": "icon\/icon-64.png",
        "128": "icon\/icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "commands": {
        "quick-open": {
            "description": "Quick Open",
            "suggested_key": {
                "default": "Alt+A",
                "mac": "Alt+A"
            }
        }
    },
    "background": {
        "service_worker": "background.js"
    },
    "action": [],
    "permissions": [
        "tabs"
    ]
}