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 | 
| 官方網址 | 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\/*"
        ]
    }
}  |  |