Mapp Acquire
This extension enriches Mapp Acquire's user interface capabilities.
什么是Mapp Acquire?
Mapp Acquire是由Mapp Acquire开发的Chrome扩展程序,该扩展的主要功能是“This extension enriches Mapp Acquire's user interface capabilities.”。
扩展截图
下载Mapp Acquire扩展crx文件
下载Mapp Acquire扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
                        This extension improves user experience by providing features like visual CSS path selection on websites for the Mapp Acquire pixel builder.                     扩展基本信息
| 名称 |   |  
| ID | djfhmicmnegdmcbaoekpjfhkglpmfggp | 
| 官方URL | https://chromewebstore.google.com/detail/mapp-acquire/djfhmicmnegdmcbaoekpjfhkglpmfggp | 
| 简介 | This extension enriches Mapp Acquire's user interface capabilities. | 
| 文件大小 | 45.71 KB | 
| 安装次数 | 67 | 
| 当前版本 | 0.0.4 | 
| 更新时间 | 2021-12-04 | 
| 上架时间 | 2021-12-04 | 
| 开发者 | Mapp Acquire | 
| 电子邮箱 | [email protected] | 
| 付费类型 | free | 
| 扩展官网 | https://platform.flxone.com | 
| 隐私政策页面URL | https://mapp.com/privacy | 
| 支持的语言 | 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\/*"
        ]
    }
}  |  |