GA4 Fixer
Patch holes in GA4 for better reporting. Adds '% of Total' in reports, 'Click to Copy' values, one-click report building and more.
Co je GA4 Fixer?
GA4 Fixer je rozšíření Chrome vyvinuté https://ga4tools.com, a jeho hlavní funkcí je „Patch holes in GA4 for better reporting. Adds '% of Total' in reports, 'Click to Copy' values, one-click report building and more.“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření GA4 Fixer
Stáhněte si soubory rozšíření GA4 Fixer ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
Pain, anguish and uncertainty lurk around every corner in GA4 land and there is only one vigilante who can stop it…GA4 Fixer! GA4 Fixer is here to kick some graphs! Bringing back features like '% of total and copy/paste (yes copy/paste is nostalgic now) to new features like hiding GA4 announcements. GA4 Fixer will save your day, or at least make you a little less frustrated which is all that you can ask for in this profession.
Základní Informace o Rozšíření
Název | GA4 Fixer |
ID | diiaealnihhapbcgmkcbkapbbmfggemc |
Oficiální URL | https://chromewebstore.google.com/detail/ga4-fixer/diiaealnihhapbcgmkcbkapbbmfggemc |
Popis | Patch holes in GA4 for better reporting. Adds '% of Total' in reports, 'Click to Copy' values, one-click report building and more. |
Velikost souboru | 1.4 MB |
Počet instalací | 2,145 |
Aktuální Verze | 2.0.0 |
Poslední Aktualizace | 2024-03-04 |
Datum Vydání | 2024-02-02 |
Hodnocení | 5.00/5 Celkem 7 Hodnocení |
Vývojář | https://ga4tools.com |
[email protected] | |
Typ Platby | free |
Podporované Jazyky | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "GA4 Fixer", "version": "2.0.0", "description": "Patch holes in GA4 for better reporting. Adds '% of Total' in reports, 'Click to Copy' values, one-click report building and more.", "background": { "service_worker": "background.js" }, "permissions": [ "activeTab", "storage", "scripting", "notifications" ], "action": { "default_popup": "popup.html", "default_icon": { "16": "images\/ga4fixer16.png", "48": "images\/ga4fixer48.png", "128": "images\/ga4fixer128.png" } }, "content_scripts": [ { "matches": [ "https:\/\/*.analytics.google.com\/*" ], "css": [ "style.css" ], "js": [ "content-script.js" ], "run_at": "document_idle" } ], "icons": { "16": "images\/ga4fixer16.png", "48": "images\/ga4fixer48.png", "128": "images\/ga4fixer128.png" } } |