Search Queue

A queue for searching the web!

ما هو Search Queue؟

Search Queue هو إضافة Chrome تم تطويرها بواسطة isaiahnields، والميزة الرئيسية لها هي "A queue for searching the web!".

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

screenshot
screenshot
screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة Search Queue

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

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

                        Search Queue adds a queue to search! This extension allows the user to queue up multiple searches and quickly make them.                    

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

الاسم Search Queue Search Queue
ID ipcifbklbbpchinpdfcfbhpghnknioff
عنوان URL الرسمي https://chromewebstore.google.com/detail/search-queue/ipcifbklbbpchinpdfcfbhpghnknioff
الوصف A queue for searching the web!
حجم الملف 60.39 KB
عدد التثبيتات 37
النسخة الحالية 2.18
آخر تحديث 2018-08-08
تاريخ النشر 2018-08-08
تقييم 5.00/5 مجموع تقييمات 3
المطور isaiahnields
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/isaiahnields/search-queue
عنوان صفحة المساعدة https://github.com/isaiahnields/SearchQueue/issues
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Search Queue",
    "version": "2.18",
    "icons": {
        "128": "resources\/images\/icon_128.png"
    },
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'",
    "description": "A queue for searching the web!",
    "background": {
        "scripts": [
            "resources\/js\/background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": "resources\/images\/icon.png"
    },
    "commands": {
        "next": {
            "suggested_key": {
                "default": "Alt+Up",
                "windows": "Alt+Up",
                "mac": "Alt+Up"
            },
            "description": "Next",
            "global": false
        },
        "previous": {
            "suggested_key": {
                "default": "Alt+Down",
                "windows": "Alt+Down",
                "mac": "Alt+Down"
            },
            "description": "Previous",
            "global": false
        }
    },
    "permissions": [
        "storage",
        "notifications",
        "tabs",
        "background",
        "contextMenus"
    ]
}