Search Queue
A queue for searching the web!
Cos'è Search Queue?
Search Queue è un'estensione di Chrome sviluppata da isaiahnields, e la sua funzione principale è "A queue for searching the web!".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Search Queue
Scarica i file di estensione Search Queue in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
Search Queue adds a queue to search! This extension allows the user to queue up multiple searches and quickly make them.
Informazioni di Base sull'Estensione
Nome | Search Queue |
ID | ipcifbklbbpchinpdfcfbhpghnknioff |
URL Ufficiale | https://chromewebstore.google.com/detail/search-queue/ipcifbklbbpchinpdfcfbhpghnknioff |
Descrizione | A queue for searching the web! |
Dimensione del File | 60.39 KB |
Conteggio Installazioni | 37 |
Versione Corrente | 2.18 |
Ultimo Aggiornamento | 2018-08-08 |
Data di Pubblicazione | 2018-08-08 |
Valutazione | 5.00/5 Totale 3 Valutazioni |
Sviluppatore | isaiahnields |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/isaiahnields/search-queue |
URL della Pagina di Aiuto | https://github.com/isaiahnields/SearchQueue/issues |
Lingue Supportate | 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" ] } |