Search Queue
A queue for searching the web!
什麼是Search Queue?
Search Queue是由isaiahnields開發的Chrome擴展程式,該擴展的主要功能是“A queue for searching the web!”。
擴展截圖
下載Search Queue擴展crx文件
下載Search Queue擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Search Queue adds a queue to search! This extension allows the user to queue up multiple searches and quickly make them.
擴展基本資訊
名稱 | Search Queue |
ID | ipcifbklbbpchinpdfcfbhpghnknioff |
官方網址 | https://chromewebstore.google.com/detail/search-queue/ipcifbklbbpchinpdfcfbhpghnknioff |
簡介 | A queue for searching the web! |
檔案大小 | 60.39 KB |
安裝次數 | 37 |
目前版本 | 2.18 |
更新時間 | 2018-08-08 |
上架時間 | 2018-08-08 |
評分 | 5.00/5 共 3 次評分 |
開發者 | isaiahnields |
電子郵箱 | [email protected] |
付費類型 | free |
擴展官網 | https://github.com/isaiahnields/search-queue |
說明頁面URL | https://github.com/isaiahnields/SearchQueue/issues |
支援的語言 | 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" ] } |