Trackie
Debug and test tag manager and analytics implementations.
Trackieคืออะไร?
Trackie เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://pualien.github.io/Trackie และคุณลักษณะหลักของมันคือ "Debug and test tag manager and analytics implementations."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Trackie
ดาวน์โหลดไฟล์ส่วนขยาย Trackie ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Trackie 🐞 is a Chrome extension to enhance debugging 👨🏼💻 of some frequently-used tag management platforms 🌩:
- GTM
- Tealium
- More tag managers supported, as linked in the project homepage
In addition Trackie intercepts ⚡️ a lot of most-used tag calls (page view, clicks, checkout...) 🕵🏻♂from:
- Google Analytics also v4 property, formerly known as "App + Web" property (with Audiences also)
- Many other tags supported, as linked in the project homepage
Tag calls can now be exported in csv 💾 in order to better view data collected offline! ข้อมูลพื้นฐานของส่วนขยาย
| ชื่อ | |
| ID | iphjjodolgbelaogcefgpegebgecopeh |
| URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/trackie/iphjjodolgbelaogcefgpegebgecopeh |
| คำอธิบาย | Debug and test tag manager and analytics implementations. |
| ขนาดไฟล์ | 172 KB |
| จำนวนการติดตั้ง | 456 |
| เวอร์ชันปัจจุบัน | 0.11.12 |
| อัปเดตครั้งล่าสุด | 2020-12-14 |
| วันที่เผยแพร่ | 2019-11-15 |
| คะแนน | 5.00/5 รวมทั้งหมด 4 คะแนน |
| ผู้พัฒนา | https://pualien.github.io/Trackie |
| อีเมล | [email protected] |
| ประเภทการชำระเงิน | free |
| เว็บไซต์ส่วนขยาย | https://pualien.github.io/Trackie/ |
| URL หน้าช่วยเหลือ | https://pualien.github.io/Trackie/ |
| ภาษาที่รองรับ | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Trackie",
"description": "Debug and test tag manager and analytics implementations.",
"short_name": "trackie",
"version": "0.11.12",
"icons": {
"48": "i48.png",
"128": "i128.png"
},
"devtools_page": "devtools.html",
"options_page": "options.html",
"background": {
"scripts": [
"event.js"
],
"persistent": false
},
"content_security_policy": "script-src 'self' https:\/\/www.google-analytics.com; object-src 'self'",
"web_accessible_resources": [
"inject.js",
"oo_poly.js"
],
"permissions": [
"storage",
"http:\/\/*\/*",
"https:\/\/*\/*",
"notifications",
"declarativeWebRequest",
"*:\/\/*\/*",
"activeTab",
"downloads"
]
} | |