Goose

Inspect Google Analytics payloads and highlight clickable elements

Vad är Goose?

Goose är en Chrome-tillägg utvecklad av neporozhniy, och dess huvudfunktion är "Inspect Google Analytics payloads and highlight clickable elements".

Tilläggsskärmbilder

screenshot
screenshot
screenshot

Ladda ner Goose-förlängningens CRX-fil

Ladda ner Goose-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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                    

Grundläggande Information om Tillägg

Namn Goose Goose
ID ljbmomkmbpbfcplcakpknmllhkcbkecc
Officiell webbadress https://chrome.google.com/webstore/detail/goose/ljbmomkmbpbfcplcakpknmllhkcbkecc
Beskrivning Inspect Google Analytics payloads and highlight clickable elements
Filstorlek 52.62 KB
Antal Installationer 132
Aktuell Version 1.1
Senast Uppdaterad 2020-04-05
Publiceringsdatum 2020-04-05
Betyg 5.00/5 Totalt 1 Betyg
Utvecklare neporozhniy
Betalningssätt free
Tilläggswebbplats https://github.com/bravecow/goose
Stödda Språk 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
}