TagTag Check Extension
This extension helps to validate admitad integration
TagTag Check Extension란 무엇입니까?
TagTag Check Extension은(는) Admitad에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension helps to validate admitad integration"입니다.
확장 프로그램 스크린샷
TagTag Check Extension 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
The extension allows the user to check if the JavaScript for order registration is installed and configured correctly: – Checking if the script is available on all pages of the site. – Checking if the script is embedded ("installed") correctly. – Checking operation of the error handler script. – Checking the setting of environment variables in the script. – Checking if campaign_code is set correctly. – Checking if the first-party cookie is deployed.
확장 프로그램 기본 정보
이름 | TagTag Check Extension |
ID | hfgfandfmfdmdjbjkhdcnkoohgiocdac |
공식 URL | https://chromewebstore.google.com/detail/tagtag-check-extension/hfgfandfmfdmdjbjkhdcnkoohgiocdac |
설명 | This extension helps to validate admitad integration |
파일 크기 | 1.09 MB |
설치 횟수 | 1,259 |
현재 버전 | 0.3.0 |
최근 업데이트 | 2022-06-25 |
출시 날짜 | 2019-03-25 |
평점 | 5.00/5 총 1 개의 평점 |
개발자 | Admitad |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://help.admitad.com/en/advertiser/topic/189-integration-via-tracking-code#testing |
개인정보 보호 정책 페이지 URL | https://terms.admitad.com/en/privacy-policy/admitad-privacy-policy-intro |
지원되는 언어 | ru |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "TagTag Check Extension", "description": "This extension helps to validate admitad integration", "version": "0.3.0", "action": { "default_popup": "index.html" }, "icons": { "16": "logo-small.png", "48": "logo-small.png", "128": "logo-small.png" }, "permissions": [ "webRequest", "webNavigation", "storage" ], "host_permissions": [ "*:\/\/*\/*" ], "externally_connectable": { "ids": [ "jekoifodgifignfilbdfdadjkjmmgcek", "hfgfandfmfdmdjbjkhdcnkoohgiocdac", "kfdcjogkhbigomkfbppoeiieliikdofa", "igjkhdgaoimjdaocmfcdodehkkeocign" ] }, "content_scripts": [ { "matches": [ "https:\/\/*\/*" ], "js": [ "content.js" ], "run_at": "document_idle" } ], "background": { "service_worker": "background.js" }, "content_security_policy": { "script-src": "self", "object-src": "self" }, "web_accessible_resources": [ { "resources": [ "inject.js" ], "matches": [ "https:\/\/*\/*" ], "extension_ids": [ "kfdcjogkhbigomkfbppoeiieliikdofa", "igjkhdgaoimjdaocmfcdodehkkeocign" ] } ] } |