Add Query String To URL

This easy and lightweight extension can be used to add a query string to the any url.

ما هو Add Query String To URL؟

Add Query String To URL هو إضافة Chrome تم تطويرها بواسطة iamraghvendrapathak، والميزة الرئيسية لها هي "This easy and lightweight extension can be used to add a query string to the any url.".

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

screenshot

تحميل ملف CRX للإضافة Add Query String To URL

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

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

                        Tired of adding query string to the url? This easy and lightweight extension helps you to add a query string to any url. All you need is to turn on the toggle.                    

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

الاسم Add Query String To URL Add Query String To URL
ID plakklnddafbgeodimojmfgneiadigkp
عنوان URL الرسمي https://chromewebstore.google.com/detail/add-query-string-to-url/plakklnddafbgeodimojmfgneiadigkp
الوصف This easy and lightweight extension can be used to add a query string to the any url.
حجم الملف 7 KB
عدد التثبيتات 36
النسخة الحالية 0.0.1
آخر تحديث 2022-10-25
تاريخ النشر 2022-10-24
تقييم 5.00/5 مجموع تقييمات 2
المطور iamraghvendrapathak
البريد الإلكتروني [email protected]
نوع الدفع free
اللغات المدعومة en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "author": "Raghvendra Pathak",
    "name": "Add Query String To URL",
    "short_name": "AQSTU",
    "description": "This easy and lightweight extension can be used to add a query string to the any url.",
    "version": "0.0.1",
    "manifest_version": 3,
    "action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html",
        "default_title": "Add Query String To URL"
    },
    "icons": {
        "48": "icon.png"
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "background.js"
            ]
        }
    ]
}