Add Query String To URL

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

What is Add Query String To URL?

Add Query String To URL is a Chrome extension developed by iamraghvendrapathak, and its main feature is "This easy and lightweight extension can be used to add a query string to the any url.".

Extension Screenshots

screenshot

Download Add Query String To URL Extension CRX File

Download Add Query String To URL extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Add Query String To URL Add Query String To URL
ID plakklnddafbgeodimojmfgneiadigkp
Official URL https://chromewebstore.google.com/detail/add-query-string-to-url/plakklnddafbgeodimojmfgneiadigkp
Description This easy and lightweight extension can be used to add a query string to the any url.
File Size 7 KB
Installation Count 36
Current Version 0.0.1
Last Updated 2022-10-25
Publish Date 2022-10-24
Rating 5.00/5 Total 2 Ratings
Developer iamraghvendrapathak
Email [email protected]
Payment Type free
Supported Languages 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"
            ]
        }
    ]
}