Goose

Inspect Google Analytics payloads and highlight clickable elements

What is Goose?

Goose is a Chrome extension developed by neporozhniy, and its main feature is "Inspect Google Analytics payloads and highlight clickable elements".

Extension Screenshots

screenshot
screenshot
screenshot

Download Goose Extension CRX File

Download Goose extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name Goose Goose
ID ljbmomkmbpbfcplcakpknmllhkcbkecc
Official URL https://chrome.google.com/webstore/detail/goose/ljbmomkmbpbfcplcakpknmllhkcbkecc
Description Inspect Google Analytics payloads and highlight clickable elements
File Size 52.62 KB
Installation Count 132
Current Version 1.1
Last Updated 2020-04-05
Publish Date 2020-04-05
Rating 5.00/5 Total 1 Ratings
Developer neporozhniy
Payment Type free
Extension Website https://github.com/bravecow/goose
Supported Languages 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
}