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 |
公式URL | 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 |
Eメール | [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" ] } |