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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This extension improves user experience by providing features like visual CSS path selection on websites for the Mapp Acquire pixel builder.
확장 프로그램 기본 정보
이름 | Mapp Acquire |
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\/*" ] } } |