Internalize for Google Analytics

Tag your visit to a Universal Analytics enabled site as internal traffic.

Τι είναι το Internalize for Google Analytics;

Το Internalize for Google Analytics είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον http://www.simoahava.com, και η κύρια λειτουργία του είναι "Tag your visit to a Universal Analytics enabled site as internal traffic.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Internalize for Google Analytics

Λήψη αρχείων επέκτασης Internalize for Google Analytics σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        INTRODUCTION

Use Internalize for Google Analytics to send a custom dimension to the Universal Analytics account of the page you are browsing. This custom dimension can then be used as a profile filter in Google Analytics to block out unwanted internal traffic. 

Internalize for Google Analytics can be used when blocking traffic with IP address won't work (e.g. when employee is on the road). 

HOW-TO

For this to work, you need to create a new session-scoped custom dimension in Google Analytics property settings. Make note of the index number of this new dimension.

Add the index number to the relevant field in the extension pop-up, and click "Enable Internalize". This will send the custom dimension with the value "true" to the tracking ID. It uses the client ID to add this information to the currently active session.

The extension stores your setting in a cookie which expires in 30 minutes. This is just to prevent multiple pushes of the event in a short period of time. 

HOW IT WORKS

The extension uses the XMLHttpRequest() object to send the payload to Google Analytics servers. This payload contains the client ID of the FIRST 'ga' object found on the page. It also contains the tracker ID of this object. What this means in practice is that if you have multiple instances of Universal Analytics running on the page, this current version only works with the one that is initialized first. 

The hit is sent as a non-interaction event, with Event Category "Internalize" and Event Action "Enable".

TO-DO LIST

1. Add an Options panel
2. Choose domains for which the extension will only work (now it works for all)
3. Choose a tracker ID for which the extension will only work (it will look for this tracker ID from the 'ga' object)
4. Choose whether just a cookie is set or whether the Measurement Protocol is used as well
5. Add support for multiple tracker IDs

VERSION HISTORY

1.1
- Bug fix: Internalize screwed with YouTube comments, in that they wouldn't load if the extension was loaded.

1.0
- First release                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Internalize for Google Analytics Internalize for Google Analytics
ID ompkhpfgcljnliggppohceaggjljpgdn
Επίσημο URL https://chrome.google.com/webstore/detail/internalize-for-google-an/ompkhpfgcljnliggppohceaggjljpgdn
Περιγραφή Tag your visit to a Universal Analytics enabled site as internal traffic.
Μέγεθος Αρχείου 13.21 KB
Αριθμός Εγκαταστάσεων 235
Τρέχουσα Έκδοση 1.1
Τελευταία Ενημέρωση 2014-08-21
Ημερομηνία Δημοσίευσης 2014-08-21
Αξιολόγηση 5.00/5 Συνολικά 1 Αξιολογήσεις
Προγραμματιστής http://www.simoahava.com
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Internalize for Google Analytics",
    "version": "1.1",
    "description": "Tag your visit to a Universal Analytics enabled site as internal traffic.",
    "short_name": "Internalize for Google Analytics",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "browser_action": {
        "default_icon": {
            "19": "icon19.png",
            "38": "icon38.png"
        },
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "debugger.js"
            ]
        }
    ],
    "permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "tabs",
        "storage"
    ]
}