Q360QuickSearch
This allows the user to do a quick search using the Q360 webclient.
什麼是Q360QuickSearch?
Q360QuickSearch是由Solutions360開發的Chrome擴展程式,該擴展的主要功能是“This allows the user to do a quick search using the Q360 webclient.”。
擴展截圖
下載Q360QuickSearch擴展crx文件
下載Q360QuickSearch擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
擴展基本資訊
名稱 | Q360QuickSearch |
ID | cchagdmlljbeffcnifpplgjafdddjogd |
官方網址 | https://chromewebstore.google.com/detail/q360quicksearch/cchagdmlljbeffcnifpplgjafdddjogd |
簡介 | This allows the user to do a quick search using the Q360 webclient. |
檔案大小 | 43.61 KB |
安裝次數 | 69 |
目前版本 | 1.3 |
更新時間 | 2019-02-06 |
上架時間 | 2019-01-31 |
評分 | 5.00/5 共 2 次評分 |
開發者 | Solutions360 |
電子郵箱 | [email protected] |
付費類型 | free |
擴展官網 | http://solutions360.com |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Q360QuickSearch", "description": "This allows the user to do a quick search using the Q360 webclient.", "author": "Solutions 360", "version": "1.3", "homepage_url": "http:\/\/www.solutions360.com\/", "content_scripts": [ { "matches": [ "*:\/\/*\/controller.php?action=q360*", "*:\/\/*\/controller.php?action=quicksearch*" ], "js": [ "Q360QuickSearch.js" ] } ], "background": { "scripts": [ "backend.js" ], "persistent": false }, "browser_action": { "default_icon": { "16": "images\/icon16.png", "48": "images\/icon48.png", "128": "images\/icon128.png" } }, "icons": { "16": "images\/icon16.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "permissions": [ "contextMenus", "tabs", "activeTab" ] } |