Zemanta Pixel Helper
With the use of the Zemanta Pixel Helper, you can test and troubleshoot your Zemanta pixel implementation on your web site
什麼是Zemanta Pixel Helper?
Zemanta Pixel Helper是由outbrain-ext開發的Chrome擴展程式,該擴展的主要功能是“With the use of the Zemanta Pixel Helper, you can test and troubleshoot your Zemanta pixel implementation on your web site”。
擴展截圖
下載Zemanta Pixel Helper擴展crx文件
下載Zemanta Pixel Helper擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
If you find that you are not receiving conversions in your dashboard after the campaign has been live for a few days, make sure to check the Pixel Helper for any error messages. 擴展基本資訊
| 名稱 | |
| ID | hcmhhjbfamlpaejfmlildgpgedlbdfoh |
| 官方網址 | https://chromewebstore.google.com/detail/zemanta-pixel-helper/hcmhhjbfamlpaejfmlildgpgedlbdfoh |
| 簡介 | With the use of the Zemanta Pixel Helper, you can test and troubleshoot your Zemanta pixel implementation on your web site |
| 檔案大小 | 137 KB |
| 安裝次數 | 484 |
| 目前版本 | 1.0.3 |
| 更新時間 | 2022-03-16 |
| 上架時間 | 2021-11-01 |
| 開發者 | outbrain-ext |
| 電子郵箱 | [email protected] |
| 付費類型 | free |
| 擴展官網 | https://www.zemanta.com |
| 支援的語言 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Zemanta Pixel Helper",
"short_name": "Zemanta Pixel Helper",
"version": "1.0.3",
"description": "With the use of the Zemanta Pixel Helper, you can test and troubleshoot your Zemanta pixel implementation on your web site",
"icons": {
"16": "zemanta-icon.png",
"48": "48x48.png",
"128": "128x128.png"
},
"browser_action": {
"default_icon": {
"16": "zemanta-icon.png",
"24": "zemanta-icon.png",
"32": "32x32.png"
},
"default_title": "Zemanta Pixel Helper",
"default_popup": "drop_down\/drop_down.html"
},
"permissions": [
"webRequest",
"http:\/\/*\/*",
"https:\/\/*\/*",
"tabs"
],
"background": {
"scripts": [
"background.js"
]
},
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"js": [
"content.js"
],
"run_at": "document_start"
}
]
} | |