Google Analytics User Interface Cleaner

Clean unnecessary elements dislpayed on the user interface of Google Analytics, and so, be more productive with GA data access.

Co to jest Google Analytics User Interface Cleaner?

Google Analytics User Interface Cleaner to rozszerzenie Chrome opracowane przez mehdi, a jego główną funkcją jest „Clean unnecessary elements dislpayed on the user interface of Google Analytics, and so, be more productive with GA data access.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Google Analytics User Interface Cleaner

Pobierz pliki rozszerzeń Google Analytics User Interface Cleaner w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        During this critical period for analytics devices migration from Google Analytics Universal to the implementation and deployment of new data collection, this tools is a small help to remove any disturbing elements from the user interface to go fast for analytics experts, knowing the situation about the sunset of the legacy version of the analytics tool from Google.                    

Podstawowe informacje o rozszerzeniu

Nazwa Google Analytics User Interface Cleaner Google Analytics User Interface Cleaner
ID plcclkbjnajipakjfegafnjeaklbeifb
Oficjalny URL https://chromewebstore.google.com/detail/google-analytics-user-int/plcclkbjnajipakjfegafnjeaklbeifb
Opis Clean unnecessary elements dislpayed on the user interface of Google Analytics, and so, be more productive with GA data access.
Rozmiar pliku 415 KB
Liczba instalacji 199
Aktualna Wersja 0.1.1
Ostatnia Aktualizacja 2023-05-18
Data Publikacji 2023-05-12
Deweloper mehdi
E-mail [email protected]
Typ Płatności free
Adres URL Strony Polityki Prywatności https://extension.withlookerstudio.com/privacy-policy
Obsługiwane Języki en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Google Analytics User Interface Cleaner",
    "author": "Mehdi Oudjida",
    "description": "Clean unnecessary elements dislpayed on the user interface of Google Analytics, and so, be more productive with GA data access.",
    "version": "0.1.1",
    "background": {
        "service_worker": "scripts\/background.js"
    },
    "icons": {
        "16": "ga_ui_cleaner_16.png",
        "32": "ga_ui_cleaner_32.png",
        "48": "ga_ui_cleaner_48.png",
        "128": "ga_ui_cleaner_128.png"
    },
    "action": {
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/analytics.google.com\/*"
            ],
            "js": [
                "scripts\/content.js"
            ]
        }
    ],
    "permissions": [
        "storage"
    ],
    "host_permissions": [
        "https:\/\/analytics.google.com\/"
    ]
}