Search Queue

A queue for searching the web!

Vad är Search Queue?

Search Queue är en Chrome-tillägg utvecklad av isaiahnields, och dess huvudfunktion är "A queue for searching the web!".

Tilläggsskärmbilder

screenshot
screenshot
screenshot
screenshot
screenshot

Ladda ner Search Queue-förlängningens CRX-fil

Ladda ner Search Queue-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

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

Grundläggande Information om Tillägg

Namn Search Queue Search Queue
ID ipcifbklbbpchinpdfcfbhpghnknioff
Officiell webbadress https://chromewebstore.google.com/detail/search-queue/ipcifbklbbpchinpdfcfbhpghnknioff
Beskrivning A queue for searching the web!
Filstorlek 60.39 KB
Antal Installationer 37
Aktuell Version 2.18
Senast Uppdaterad 2018-08-08
Publiceringsdatum 2018-08-08
Betyg 5.00/5 Totalt 3 Betyg
Utvecklare isaiahnields
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/isaiahnields/search-queue
Hjälpsida URL https://github.com/isaiahnields/SearchQueue/issues
Stödda Språk 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"
    ]
}