Search Queue
A queue for searching the web!
Co to jest Search Queue?
Search Queue to rozszerzenie Chrome opracowane przez isaiahnields, a jego główną funkcją jest „A queue for searching the web!”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Search Queue
Pobierz pliki rozszerzeń Search Queue w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
Search Queue adds a queue to search! This extension allows the user to queue up multiple searches and quickly make them.
Podstawowe informacje o rozszerzeniu
Nazwa | Search Queue |
ID | ipcifbklbbpchinpdfcfbhpghnknioff |
Oficjalny URL | https://chromewebstore.google.com/detail/search-queue/ipcifbklbbpchinpdfcfbhpghnknioff |
Opis | A queue for searching the web! |
Rozmiar pliku | 60.39 KB |
Liczba instalacji | 37 |
Aktualna Wersja | 2.18 |
Ostatnia Aktualizacja | 2018-08-08 |
Data Publikacji | 2018-08-08 |
Ocena | 5.00/5 Łącznie 3 Oceny |
Deweloper | isaiahnields |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/isaiahnields/search-queue |
Adres URL Strony Pomocy | https://github.com/isaiahnields/SearchQueue/issues |
Obsługiwane Języki | 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" ] } |