UTM Eraser

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

UTM Eraserとは何ですか?

UTM EraserはNickによって開発されたChromeの拡張機能で、その主な機能は「Clean tracking query parameters from URLs, such as utm, fbclid, gclid, etc.」です。

拡張機能のスクリーンショット

screenshot

UTM Eraser拡張機能のCRXファイルをダウンロード

UTM Eraser拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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
Eメール [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
}