Search Queue
A queue for searching the web!
Co je Search Queue?
Search Queue je rozšíření Chrome vyvinuté isaiahnields, a jeho hlavní funkcí je „A queue for searching the web!“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Search Queue
Stáhněte si soubory rozšíření Search Queue ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
Search Queue adds a queue to search! This extension allows the user to queue up multiple searches and quickly make them.
Základní Informace o Rozšíření
Název | Search Queue |
ID | ipcifbklbbpchinpdfcfbhpghnknioff |
Oficiální URL | https://chromewebstore.google.com/detail/search-queue/ipcifbklbbpchinpdfcfbhpghnknioff |
Popis | A queue for searching the web! |
Velikost souboru | 60.39 KB |
Počet instalací | 37 |
Aktuální Verze | 2.18 |
Poslední Aktualizace | 2018-08-08 |
Datum Vydání | 2018-08-08 |
Hodnocení | 5.00/5 Celkem 3 Hodnocení |
Vývojář | isaiahnields |
[email protected] | |
Typ Platby | free |
Webové stránky Rozšíření | https://github.com/isaiahnields/search-queue |
URL Stránky Nápovědy | https://github.com/isaiahnields/SearchQueue/issues |
Podporované Jazyky | 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" ] } |