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 |
官方URL | 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" ] } |