Mapp Acquire

This extension enriches Mapp Acquire's user interface capabilities.

Mapp Acquire là gì?

Mapp Acquire là một tiện ích mở rộng Chrome được phát triển bởi Mapp Acquire, và tính năng chính của nó là "This extension enriches Mapp Acquire's user interface capabilities.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Mapp Acquire

Tải xuống các tệp mở rộng Mapp Acquire dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        This extension improves user experience by providing features like visual CSS path selection on websites for the Mapp Acquire pixel builder.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Mapp Acquire Mapp Acquire
ID djfhmicmnegdmcbaoekpjfhkglpmfggp
URL Chính Thức https://chromewebstore.google.com/detail/mapp-acquire/djfhmicmnegdmcbaoekpjfhkglpmfggp
Mô tả This extension enriches Mapp Acquire's user interface capabilities.
Kích Thước Tệp 45.71 KB
Số Lần Cài Đặt 67
Phiên Bản Hiện Tại 0.0.4
Cập Nhật Lần Cuối 2021-12-04
Ngày Phát Hành 2021-12-04
Nhà Phát Triển Mapp Acquire
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://platform.flxone.com
URL Trang Chính Sách Bảo Mật https://mapp.com/privacy
Ngôn Ngữ Được Hỗ Trợ 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\/*"
        ]
    }
}