Mapp Acquire

This extension enriches Mapp Acquire's user interface capabilities.

Co to jest Mapp Acquire?

Mapp Acquire to rozszerzenie Chrome opracowane przez Mapp Digital, a jego główną funkcją jest „This extension enriches Mapp Acquire's user interface capabilities.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Mapp Acquire

Pobierz pliki rozszerzeń Mapp Acquire w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Mapp Acquire Mapp Acquire
ID adhiaibbkbbpjbcabkeelhgmpbidinbk
Oficjalny URL https://chromewebstore.google.com/detail/mapp-acquire/adhiaibbkbbpjbcabkeelhgmpbidinbk
Opis This extension enriches Mapp Acquire's user interface capabilities.
Rozmiar pliku 45.71 KB
Liczba instalacji 45
Aktualna Wersja 0.0.4
Ostatnia Aktualizacja 2021-07-06
Data Publikacji 2020-09-18
Deweloper Mapp Digital
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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\/*"
        ]
    }
}