Google Analytics Relabelling Machine

Changes the terminology used in Google Analytics reports.

Google Analytics Relabelling Machine란 무엇입니까?

Google Analytics Relabelling Machine은(는) http://www.conversionworks.co.uk에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Changes the terminology used in Google Analytics reports."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Google Analytics Relabelling Machine 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        The Relabelling Machine lets you change headings and labels in your Google Analytics reports to use the same language as your business.

If you use Google Analytics for reporting you probably find the standard headings and labels don't exactly match the same words you use in your day to day work. This might make sharing data and reports harder. Use the Relabelling Machine to modify any Google Analytics report quickly and easily so they clearly represent the data as you want to describe it.

For example, if you are analysing data for a lead generation site, you can change the Enhanced Ecommerce Shopping Behaviour report to refer to leads rather than transactions.

If your site sells services rather than products, you can change the Product Performance report to refer to services rather than products.

Add as many replacement labels as you need. Replacements are executed in the order they are shown in the list so replace plurals first and then deal with singular labels. For example, replace 'Products' with 'Services' first and then deal with the 'Product' to 'Service' replacement.

The Relabelling Machine has three operational modes:

1: Advanced
2: Simple
3: Off

The last option will disable all label replacements and show the default GA front end. The Advanced mode will attempt to relabel everything in the GA front end. As GA is a complex web application, this may break the functionality - segment drop downs or advanced filter editing for example. This mode is still useful for screen shots. If you need to keep drilling into your data and configuring reports, use the Simple mode to make sure the front end doesn't break.

Once you've added the required labels, tweaked and refined your list, choose the operation mode and start analysing using your own vocabulary!                    

확장 프로그램 기본 정보

이름 Google Analytics Relabelling Machine Google Analytics Relabelling Machine
ID mpmbcabanbdjomcdbcjefojggjgbkncf
공식 URL https://chrome.google.com/webstore/detail/google-analytics-relabell/mpmbcabanbdjomcdbcjefojggjgbkncf
설명 Changes the terminology used in Google Analytics reports.
파일 크기 53.92 KB
설치 횟수 37
현재 버전 1.0.1
최근 업데이트 2015-05-14
출시 날짜 2015-05-14
평점 5.00/5 총 1 개의 평점
개발자 http://www.conversionworks.co.uk
결제 유형 free
도움말 페이지 URL http://www.conversionworks.co.uk/google-analytics-relabelling-machine/
지원되는 언어 en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Google Analytics Relabelling Machine",
    "description": "Changes the terminology used in Google Analytics reports.",
    "author": "ConversionWorks",
    "homepage_url": "http:\/\/www.conversionworks.co.uk",
    "version": "1.0.1",
    "icons": {
        "128": "icon-128.png"
    },
    "permissions": [
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "storage"
    ],
    "browser_action": {
        "default_icon": "icon-128.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.google.com\/analytics\/web\/*"
            ],
            "js": [
                "jquery-2.1.3.min.js",
                "arrive.min.js",
                "content_script.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "manifest_version": 2
}