UTM Eraser

Clean tracking query parameters from URLs, such as utm, fbclid, gclid, etc.

UTM Eraser क्या है?

UTM Eraser Nick द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Clean tracking query parameters from URLs, such as utm, fbclid, gclid, etc."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में UTM Eraser एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        An extension to clean tracking request parameters from URLs.

Please note that the parameters are removed from the URL after the page is loaded, so unfortunately this extension is not tracking protection. However, a clean URL is more convenient for sharing a link.

List of query parameters removed by the current version of the extension:
- "utm_campaign"
- "utm_content"
- "utm_id"
- "utm_source"
- "utm_referrer"
- "utm_medium"
- "utm_term"
- "utm_name"
- "fbclid"
- "gclid"
- "ysclid"                    

एक्सटेंशन की मूल जानकारी

नाम UTM Eraser UTM Eraser
ID cepijkcnhhbjgiofhdhbomcgdmfjbbhb
आधिकारिक URL https://chromewebstore.google.com/detail/utm-eraser/cepijkcnhhbjgiofhdhbomcgdmfjbbhb
विवरण Clean tracking query parameters from URLs, such as utm, fbclid, gclid, etc.
फ़ाइल का आकार 24.54 KB
स्थापना संख्या 41
वर्तमान संस्करण 1.0.2
अंतिम अपडेट 2023-05-13
प्रकाशन तिथि 2022-10-21
रेटिंग 5.00/5 कुल 1 रेटिंग्स
डेवलपर Nick
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/Psychosynthesis/Eraser
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "UTM Eraser",
    "version": "1.0.2",
    "description": "Clean tracking query parameters from URLs, such as utm, fbclid, gclid, etc.",
    "homepage_url": "https:\/\/github.com\/Psychosynthesis\/Eraser",
    "icons": {
        "48": "icons\/favicon.png",
        "96": "icons\/faviconMiddle.png",
        "128": "icons\/faviconBig.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "run_at": "document_start",
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js",
        "type": "module"
    },
    "action": {
        "browser_style": true,
        "default_icon": "icons\/panelicon.png",
        "default_title": "Eraser",
        "default_popup": "panel\/panelMenu.html"
    },
    "permissions": [
        "storage"
    ],
    "manifest_version": 3
}