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ファイルをダウンロード
TagTag Check Extension拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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 |
Eメール | [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" ] } ] } |