TagTag Check Extension
This extension helps to validate admitad integration
TagTag Check Extensionคืออะไร?
TagTag Check Extension เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Admitad และคุณลักษณะหลักของมันคือ "This extension helps to validate admitad integration"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย TagTag Check Extension
ดาวน์โหลดไฟล์ส่วนขยาย 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 |
อีเมล | [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" ] } ] } |