Search Queue
A queue for searching the web!
What is Search Queue?
Search Queue is a Chrome extension developed by isaiahnields, and its main feature is "A queue for searching the web!".
Extension Screenshots
Download Search Queue Extension CRX File
Download Search Queue extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Search Queue adds a queue to search! This extension allows the user to queue up multiple searches and quickly make them.
Extension Basic Information
Name | Search Queue |
ID | ipcifbklbbpchinpdfcfbhpghnknioff |
Official URL | https://chromewebstore.google.com/detail/search-queue/ipcifbklbbpchinpdfcfbhpghnknioff |
Description | A queue for searching the web! |
File Size | 60.39 KB |
Installation Count | 37 |
Current Version | 2.18 |
Last Updated | 2018-08-08 |
Publish Date | 2018-08-08 |
Rating | 5.00/5 Total 3 Ratings |
Developer | isaiahnields |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/isaiahnields/search-queue |
Help Page URL | https://github.com/isaiahnields/SearchQueue/issues |
Supported Languages | 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" ] } |