UTM Cleaner

Removes 'utm_' parameters from queries

ما هو UTM Cleaner؟

UTM Cleaner هو إضافة Chrome تم تطويرها بواسطة burik666، والميزة الرئيسية لها هي "Removes 'utm_' parameters from queries".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة UTM Cleaner

قم بتنزيل ملفات الامتداد UTM Cleaner بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        Urchin Tracking Module (UTM) parameters are five variants of URL parameters used by marketers to track the effectiveness of online marketing campaigns across traffic sources and publishing media. (from wiki)

This extension removes 'utm_' parameters from queries.

For example:
Request https://example.org/?id=1&utm_source=email_notifications
will be redirected to
https://example.org/?id=1                    

معلومات أساسية عن التمديد

الاسم UTM Cleaner UTM Cleaner
ID callcknokdemagicbjfplblmfojambpd
عنوان URL الرسمي https://chrome.google.com/webstore/detail/utm-cleaner/callcknokdemagicbjfplblmfojambpd
الوصف Removes 'utm_' parameters from queries
حجم الملف 45.27 KB
عدد التثبيتات 46
النسخة الحالية 0.1
آخر تحديث 2018-07-14
تاريخ النشر 2018-07-14
تقييم 5.00/5 مجموع تقييمات 1
المطور burik666
نوع الدفع free
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "UTM Cleaner",
    "version": "0.1",
    "description": "Removes 'utm_' parameters from queries",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon.png"
    },
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "webRequest",
        "webRequestBlocking",
        "tabs",
        ""
    ]
}