Wonder Quick Access
Quick access to Wonder when you need it most
什么是Wonder Quick Access?
Wonder Quick Access是由https://askwonder.com开发的Chrome扩展程序,该扩展的主要功能是“Quick access to Wonder when you need it most”。
扩展截图
下载Wonder Quick Access扩展crx文件
下载Wonder Quick Access扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Wonder saves you time researching for pitches and projects, so you can focus on the higher impact thinking that really matters. How it works: tell us what you need to know. Our network of research experts do the digging and return a detailed write-up and resources within 24 hours.
Wonder's handy chrome extension adds a quick-access button for you to leverage when needed. 扩展基本信息
| 名称 | |
| ID | iihmnilplhfnmecpomjmmpfddlfcfhjc |
| 官方URL | https://chromewebstore.google.com/detail/wonder-quick-access/iihmnilplhfnmecpomjmmpfddlfcfhjc |
| 简介 | Quick access to Wonder when you need it most |
| 文件大小 | 21.23 KB |
| 安装次数 | 17 |
| 当前版本 | 0.9.1.2 |
| 更新时间 | 2016-05-31 |
| 上架时间 | 2016-05-31 |
| 开发者 | https://askwonder.com |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | http://askwonder.com |
| 隐私政策页面URL | https://askwonder.com/privacy |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Wonder Quick Access",
"author": "Michael Kohen",
"version": "0.9.1.2",
"manifest_version": 2,
"description": "Quick access to Wonder when you need it most",
"homepage_url": "http:\/\/askwonder.com",
"background": {
"scripts": [
"background.js"
],
"persistent": true
},
"content_scripts": [
{
"matches": [
"*:\/\/*.www.google.com\/*"
],
"exclude_matches": [
"*:\/\/*.www.google.com\/maps*"
],
"js": [
"inject.js"
],
"css": [
"askwonder.css"
]
}
],
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
},
"browser_action": {
"default_title": "Ask Wonder",
"default_icon": "logo.png"
},
"permissions": [
"*:\/\/*.google.com\/*"
]
} | |