Toggle Google Analytics Tracking

Toggle Google Analytics Tracking and opt-out of Google Optimize experiments. Toggle on and off by clicking the icon.

Toggle Google Analytics Tracking là gì?

Toggle Google Analytics Tracking là một tiện ích mở rộng Chrome được phát triển bởi Dave Redfern, và tính năng chính của nó là "Toggle Google Analytics Tracking and opt-out of Google Optimize experiments. Toggle on and off by clicking the icon.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Toggle Google Analytics Tracking

Tải xuống các tệp mở rộng Toggle Google Analytics Tracking dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        What does Toggle Google Analytics Tracking do?

- Tells the Google Analytics JavaScript not to send information to Google Analytics.
- Stops you from being opted into any Google Optimize experiments (although previews will still work).

Features include…

- Enable and disable Google Analytics tracking.
- If tracking if enabled, a reminder notification is displayed once a day.

Ideal for the following people…

- For website owners, CRO consultants, and SEO agencies to exclude themselves from Analytics data without the hassle filtering their IP address or creating custom dimension. 
- For A/B engineers who create experiment so they always see the control version of a page.

Completely private

- No information is sent to or from the extensions. Google Analytics has a neat little script that can be prepended to the top of web pages to tell them you’re opting out of tracking.

Useful things to know

- When starting an experiment you may receive a message to “Check installation”. The “check installation” feature takes place in your browser. When the extension is enabled you have been opted out of Google Analytics and Google Optimize interprets as the Analytics property missing from the website. You can ignore this message.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Toggle Google Analytics Tracking Toggle Google Analytics Tracking
ID dhbnkmiomdhjdennlaoddpckpdlpogha
URL Chính Thức https://chromewebstore.google.com/detail/toggle-google-analytics-t/dhbnkmiomdhjdennlaoddpckpdlpogha
Mô tả Toggle Google Analytics Tracking and opt-out of Google Optimize experiments. Toggle on and off by clicking the icon.
Kích Thước Tệp 131 KB
Số Lần Cài Đặt 133
Phiên Bản Hiện Tại 0.0.3
Cập Nhật Lần Cuối 2020-06-22
Ngày Phát Hành 2020-06-20
Nhà Phát Triển Dave Redfern
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Toggle Google Analytics Tracking",
    "description": "Toggle Google Analytics Tracking and opt-out of Google Optimize experiments. Toggle on and off by clicking the icon.",
    "version": "0.0.3",
    "icons": {
        "16": "icon-color-16.png",
        "32": "icon-color-32.png",
        "48": "icon-color-48.png",
        "128": "icon-color-128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "storage",
        "activeTab",
        "notifications"
    ],
    "browser_action": {
        "name": "Click to toggle Google Analytics on and off"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "manifest_version": 2
}