Block Yourself from Analytics
Block your Google Analytics™ activity for the websites you own, no more false stats.
Τι είναι το Block Yourself from Analytics;
Το Block Yourself from Analytics είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://igorware.com, και η κύρια λειτουργία του είναι "Block your Google Analytics™ activity for the websites you own, no more false stats.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Block Yourself from Analytics
Λήψη αρχείων επέκτασης Block Yourself from Analytics σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
Extension is meant for webmasters to block their own visits for their websites thus avoiding false stats. Easy to manage website list accepts domain names with wildcards. It is not meant to block Google Analytics™ script for all websites, I don't support that so please don't ask for this ability. :: Minimum Requirements Requires at least Chrome v63 :: How to use? Open extension settings, go to websites list and add all your websites to the list. You can use "example.com" or "www.example.com" for exact match OR use wildchar like "*example.com" to match example.com with all it's subdomains. Note that if you put dot between wildchar and domain name you would only match subdomains and not your naked domain name. Extension is available for Chrome, Edge, Firefox and Opera. :: Contact & Report Issues: https://www.igorware.com/contact --------------------------------------------------------- :: Changelog v3.4.0 - added support for GA4 v3.3.1 - improved Google Analytics script detection v3.3.0 - improved extension icon and tooltip handling - added CSP for better security v3.2.2 - fixed issue with website importer not checking if domain attribute exists v3.2.1 - small improvement for options page v3.2.0 - fixed a known issue with websites that use service workers - updated minimum requirements to Chrome v63 (technical reasons) v3.1.0 - support for ga-lite (Google Analytics Lite) - support for Beacon API v3.0.5 - fixed issue with tab switching in extension options v3.0.4 - code cleanup - updated minimum requirements to Chrome v29 v3.0.3 - fixed logger script v3.0.2 - improved logger script v3.0.1 - fixed an issue where options page would not work if opened before extension has been initialised - improved logger script v3.0.0 - extension icon will now behave a bit differently, it will not be disabled for "system" pages so you will still be able to access extension's popup menu - moved localStorage to storage API (rewrite of extension's storage) - changed default message for extension's icon tooltip to avoid confusion - enabled chrome_style for options, this should make sure options have more consistent UI with Chrome - added error logger (this will help me catch errors sooner) - other small fixes - minimum browser requirement is now Chrome v22 ===> Full changelog available on the website
Βασικές Πληροφορίες Επέκτασης
Όνομα | Block Yourself from Analytics |
ID | fadgflmigmogfionelcpalhohefbnehm |
Επίσημο URL | https://chromewebstore.google.com/detail/block-yourself-from-analy/fadgflmigmogfionelcpalhohefbnehm |
Περιγραφή | Block your Google Analytics™ activity for the websites you own, no more false stats. |
Μέγεθος Αρχείου | 41.94 KB |
Αριθμός Εγκαταστάσεων | 79,644 |
Τρέχουσα Έκδοση | 3.4.0 |
Τελευταία Ενημέρωση | 2022-01-19 |
Ημερομηνία Δημοσίευσης | 2020-02-19 |
Αξιολόγηση | 4.41/5 Συνολικά 133 Αξιολογήσεις |
Προγραμματιστής | https://igorware.com |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://www.igorware.com/extensions/block-yourself-from-analytics |
Διεύθυνση URL της Σελίδας Βοήθειας | https://www.igorware.com/contact?referrer-ver=Block-Yourself-from-Analytics |
URL της Σελίδας Πολιτικής Απορρήτου | https://www.igorware.com/extensions/privacy-policy |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "minimum_chrome_version": "63", "offline_enabled": true, "name": "Block Yourself from Analytics", "version": "3.4.0", "description": "Block your Google Analytics\u2122 activity for the websites you own, no more false stats.", "homepage_url": "https:\/\/www.igorware.com\/extensions\/block-yourself-from-analytics?referrer-ver=chrome-ext-manager", "background": { "scripts": [ "logger.js", "cross.js", "storage.js", "background.js" ], "persistent": true }, "options_page": "options.html", "options_ui": { "page": "options.html", "chrome_style": true, "open_in_tab": true }, "icons": { "16": "images\/icon-016.png", "19": "images\/icon-019.png", "32": "images\/icon-032.png", "38": "images\/icon-038.png", "48": "images\/icon-048.png", "64": "images\/icon-064.png", "128": "images\/icon-128.png" }, "browser_action": { "default_title": "Extension not available for this website", "default_popup": "popup.html", "default_icon": { "16": "images\/icon-disabled-016.png", "19": "images\/icon-disabled-019.png", "32": "images\/icon-disabled-032.png", "38": "images\/icon-disabled-038.png" } }, "content_security_policy": "default-src 'self'; connect-src https:\/\/api.igorware.com; font-src 'none'; img-src 'self' data:; object-src 'none'; style-src 'unsafe-inline'", "permissions": [ "webRequest", "webRequestBlocking", "storage", "tabs", "http:\/\/*\/*", "https:\/\/*\/*" ] } |