GA4 Fixer
Patch holes in GA4 for better reporting. Adds '% of Total' in reports, 'Click to Copy' values, one-click report building and more.
GA4 Fixer क्या है?
GA4 Fixer https://ga4tools.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Patch holes in GA4 for better reporting. Adds '% of Total' in reports, 'Click to Copy' values, one-click report building and more."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में GA4 Fixer एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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.
एक्सटेंशन की मूल जानकारी
नाम | GA4 Fixer |
ID | diiaealnihhapbcgmkcbkapbbmfggemc |
आधिकारिक URL | https://chromewebstore.google.com/detail/ga4-fixer/diiaealnihhapbcgmkcbkapbbmfggemc |
विवरण | Patch holes in GA4 for better reporting. Adds '% of Total' in reports, 'Click to Copy' values, one-click report building and more. |
फ़ाइल का आकार | 1.4 MB |
स्थापना संख्या | 2,145 |
वर्तमान संस्करण | 2.0.0 |
अंतिम अपडेट | 2024-03-04 |
प्रकाशन तिथि | 2024-02-02 |
रेटिंग | 5.00/5 कुल 7 रेटिंग्स |
डेवलपर | https://ga4tools.com |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | 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" } } |