Goose
Inspect Google Analytics payloads and highlight clickable elements
Wat is Goose?
Goose is een Chrome-extensie ontwikkeld door neporozhniy, en de belangrijkste functie is "Inspect Google Analytics payloads and highlight clickable elements".
Extensie Screenshots
Download het CRX-bestand van de extensie Goose
Download Goose-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
Logs payload data to popup. In addition, it provides highlighting DOM nodes: 1. Add data-analytics-click="event_category|event_action|event_label" attribute to tags, which on click send event to google analytics 2. Add JS code to handle clicks on these tags, eg: https://github.com/bravecow/goose/blob/master/click.js 3. Click Highlight button
Basisinformatie over de Extensie
Naam | |
ID | ljbmomkmbpbfcplcakpknmllhkcbkecc |
Officiële URL | https://chrome.google.com/webstore/detail/goose/ljbmomkmbpbfcplcakpknmllhkcbkecc |
Beschrijving | Inspect Google Analytics payloads and highlight clickable elements |
Bestandsgrootte | 52.62 KB |
Aantal Installaties | 132 |
Huidige Versie | 1.1 |
Laatst Bijgewerkt | 2020-04-05 |
Publicatiedatum | 2020-04-05 |
Beoordeling | 5.00/5 Totaal 1 Beoordelingen |
Ontwikkelaar | neporozhniy |
Betalingswijze | free |
Extensiewebsite | https://github.com/bravecow/goose |
Ondersteunde Talen | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Goose", "version": "1.1", "description": "Inspect Google Analytics payloads and highlight clickable elements", "permissions": [ "tabs", "activeTab", "webRequest", "*:\/\/www.google-analytics.com\/", "*:\/\/stats.g.doubleclick.net\/" ], "background": { "scripts": [ "background.js" ], "persistent": true }, "browser_action": { "default_popup": "popup.html", "default_icon": { "32": "icon32.png" } }, "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "manifest_version": 2 } |