Mapp Acquire
This extension enriches Mapp Acquire's user interface capabilities.
Что такое Mapp Acquire?
Mapp Acquire - это расширение Chrome, разработанное Mapp Digital, и его основная функция - "This extension enriches Mapp Acquire's user interface capabilities.".
Снимки экрана расширения
Скачать файл CRX расширения Mapp Acquire
Скачайте файлы расширений 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.
Основная информация о расширении
Название | Mapp Acquire |
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\/*" ] } } |