eData Search
Allows the user to search companies in eData.biz.
什么是eData Search?
eData Search是由eData开发的Chrome扩展程序,该扩展的主要功能是“Allows the user to search companies in eData.biz.”。
扩展截图
下载eData Search扩展crx文件
下载eData Search扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
扩展基本信息
| 名称 | |
| ID | ffdabnbhabodigjmnnehnnceifgkogao |
| 官方URL | https://chromewebstore.google.com/detail/edata-search/ffdabnbhabodigjmnnehnnceifgkogao |
| 简介 | Allows the user to search companies in eData.biz. |
| 文件大小 | 103 KB |
| 安装次数 | 66 |
| 当前版本 | 1.2 |
| 更新时间 | 2017-12-12 |
| 上架时间 | 2017-12-12 |
| 评分 | 5.00/5 共3次评分 |
| 开发者 | eData |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://edata.biz |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "eData Search",
"description": "Allows the user to search companies in eData.biz.",
"version": "1.2",
"browser_action": {
"default_icon": "\/app\/images\/edata-icon-48.png",
"default_popup": "\/app\/template\/panel.html",
"default_title": "eData Search"
},
"icons": {
"16": "\/app\/images\/edata-icon-16.png",
"32": "\/app\/images\/edata-icon-32.png",
"48": "\/app\/images\/edata-icon-48.png"
},
"background": {
"scripts": [
"\/app\/js\/content_script.js",
"\/app\/js\/jquery-3.2.1.min.js"
]
},
"content_scripts": [
{
"matches": [
"https:\/\/*.edata.biz\/*"
],
"js": [
"\/app\/js\/edata_script.js"
]
}
],
"permissions": [
"activeTab",
"storage",
"contextMenus",
"https:\/\/*.edata.biz\/*"
],
"homepage_url": "https:\/\/edata.biz"
} | |