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 هو إضافة Chrome تم تطويرها بواسطة Google Analytics، والميزة الرئيسية لها هي "Prints useful information to the JavaScript console by enabling the debug version of the Google Analytics Javascript.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Google Analytics Debugger
قم بتنزيل ملفات الامتداد Google Analytics Debugger بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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 |
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 |
عنوان صفحة المساعدة | http://www.google.com/support/forum/p/Google+Analytics |
عنوان صفحة سياسة الخصوصية | 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" ] } } |