Mapp Acquire
This extension enriches Mapp Acquire's user interface capabilities.
什么是Mapp Acquire?
Mapp Acquire是由Mapp Digital开发的Chrome扩展程序,该扩展的主要功能是“This extension enriches Mapp Acquire's user interface capabilities.”。
扩展截图
下载Mapp Acquire扩展crx文件
下载Mapp Acquire扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This extension enriches Mapp Acquire's user interface capabilities. It makes the product easier to use by non-technical users, e.g. to select css paths on websites. 扩展基本信息
| 名称 | |
| ID | adhiaibbkbbpjbcabkeelhgmpbidinbk |
| 官方URL | https://chromewebstore.google.com/detail/mapp-acquire/adhiaibbkbbpjbcabkeelhgmpbidinbk |
| 简介 | This extension enriches Mapp Acquire's user interface capabilities. |
| 文件大小 | 45.71 KB |
| 安装次数 | 45 |
| 当前版本 | 0.0.4 |
| 更新时间 | 2021-07-06 |
| 上架时间 | 2020-09-18 |
| 开发者 | Mapp Digital |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Mapp Acquire",
"version": "0.0.4",
"manifest_version": 2,
"description": "This extension enriches Mapp Acquire's user interface capabilities.",
"homepage_url": "https:\/\/mapp.com",
"icons": {
"128": "icons\/icon128.png"
},
"browser_action": {
"default_title": "Mapp Acquire",
"default_popup": "popup.html"
},
"background": {
"scripts": [
"js\/background.js"
],
"persistent": true
},
"permissions": [
"webRequest",
"webRequestBlocking",
"https:\/\/*\/*"
],
"content_security_policy": "default-src 'self';",
"content_scripts": [
{
"matches": [
"http:\/\/localhost:4200\/*",
"http:\/\/flxviz.localhost\/*",
"https:\/\/*\/*"
],
"js": [
"js\/content.js"
],
"css": [
"css\/mapp-acquire.css"
],
"all_frames": true
}
],
"externally_connectable": {
"matches": [
"http:\/\/localhost:4200\/*",
"http:\/\/flxviz.localhost\/*",
"http:\/\/flxviz.localhost:4200\/*",
"https:\/\/beta.flxone.com\/*",
"https:\/\/platform.flxone.com\/*"
]
}
} | |