Yieldr Pixel Inspector
Debug tracking pixel implementations with ease!
Was ist Yieldr Pixel Inspector?
Yieldr Pixel Inspector ist eine Chrome-Erweiterung, die von https://yieldr.com entwickelt wurde, und ihr Hauptmerkmal ist "Debug tracking pixel implementations with ease!".
Erweiterungsscreenshots
Yieldr Pixel Inspector-Erweiterungs-CRX-Datei herunterladen
Laden Sie Yieldr Pixel Inspector-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
Grundlegende Informationen zur Erweiterung
| Name | |
| ID | peiijebaomphjdagnapbhookbnonhclm |
| Offizielle URL | https://chromewebstore.google.com/detail/yieldr-pixel-inspector/peiijebaomphjdagnapbhookbnonhclm |
| Beschreibung | Debug tracking pixel implementations with ease! |
| Dateigröße | 123 KB |
| Installationsanzahl | 88 |
| Aktuelle Version | 1.2.2 |
| Letztes Update | 2015-10-28 |
| Veröffentlichungsdatum | 2015-10-28 |
| Bewertung | 5.00/5 Insgesamt 1 Bewertungen |
| Entwickler | https://yieldr.com |
| Zahlungsart | free |
| Unterstützte Sprachen | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "__MSG_appName__",
"version": "1.2.2",
"manifest_version": 2,
"description": "__MSG_appDescription__",
"icons": {
"16": "images\/yieldr-16.png",
"128": "images\/yieldr-128.png"
},
"default_locale": "en",
"permissions": [
"tabs",
"storage",
"webRequest",
"*:\/\/*.254a.com\/*"
],
"options_ui": {
"page": "options.html",
"chrome_style": true
},
"background": {
"scripts": [
"scripts\/background.js"
],
"persistent": true
},
"externally_connectable": {
"matches": [
"*:\/\/*.yieldr.com\/*"
]
},
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"js": [
"scripts\/content.js"
],
"run_at": "document_start",
"all_frames": true
}
],
"browser_action": {
"default_icon": {
"16": "images\/yieldr-16.png",
"19": "images\/yieldr-19.png",
"38": "images\/yieldr-38.png",
"128": "images\/yieldr-128.png"
},
"default_title": "Yieldr Pixel Inspector",
"default_popup": "popup.html"
}
} | |