Google Analytics Debugger

Prints useful information to the JavaScript console by enabling the debug version of the Google Analytics Javascript.

Google Analytics Debugger란 무엇입니까?

Google Analytics Debugger은(는) Google Analytics에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Prints useful information to the JavaScript console by enabling the debug version of the Google Analytics Javascript."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        This extension loads the debug version of the Google Analytics Javascript for all sites you browse using Google Chrome.  It prints useful information to the Javascript console.  These messages include error messages and warnings which can tell you when your analytics tracking code is set up incorrectly.  In addition, it provides a detailed breakdown of each tracking beacon sent to Google Analytics.

To use this extension, You need to follow three steps: 

1. Turn it on by clicking its icon to the right of the address bar.  
2. Open the Chrome Javascript console to see the messages.
        On Windows and Linux, press Control-Shift-J.
        On Mac, press Command-Option-J.
3. Refresh the page you are on. 

By installing this extension, you agree to the Chrome Gallery Terms of Service at https://chrome.google.com/extensions/intl/en/gallery_tos.html

You can ask questions about the plugin and report bugs at [email protected]

New in this version: 
- Added support for Universal Analytics.
- Fixed some bugs.                    

확장 프로그램 기본 정보

이름 Google Analytics Debugger Google Analytics Debugger
ID jnkmfdileelhofjcijamephohjechhna
공식 URL https://chromewebstore.google.com/detail/google-analytics-debugger/jnkmfdileelhofjcijamephohjechhna
설명 Prints useful information to the JavaScript console by enabling the debug version of the Google Analytics Javascript.
파일 크기 28.88 KB
설치 횟수 643,277
현재 버전 2.8
최근 업데이트 2019-09-03
출시 날짜 2019-09-03
평점 4.18/5 총 535 개의 평점
개발자 Google Analytics
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 http://code.google.com/apis/analytics/docs/tracking/gaTrackingTroubleshooting.html
도움말 페이지 URL http://www.google.com/support/forum/p/Google+Analytics
개인정보 보호 정책 페이지 URL https://policies.google.com/privacy?hl=en-US
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Google Analytics Debugger",
    "description": "Prints useful information to the JavaScript console by enabling the debug version of the Google Analytics Javascript.",
    "permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "webRequest",
        "webRequestBlocking",
        "tabs"
    ],
    "version": "2.8",
    "icons": {
        "16": "icon-16.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "browser_action": {
        "default_title": "GA Debug: OFF",
        "default_icon": {
            "16": "icon-off-16.png",
            "32": "icon-off-32.png"
        }
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    }
}