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 iamraghvendrapathak द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This easy and lightweight extension can be used to add a query string to the any url."।

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

screenshot

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

crx प्रारूप में Add Query String To URL एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
            ]
        }
    ]
}