Query-Rider

This extension allows you to append and modify Query Parameters in URL

What is Query-Rider?

Query-Rider is a Chrome extension developed by Satyam Mishra, and its main feature is "This extension allows you to append and modify Query Parameters in URL".

Extension Screenshots

screenshot
screenshot
screenshot

Download Query-Rider Extension CRX File

Download Query-Rider 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

                        QueryRider is a lightweight browser extension which will ease your life if you deal with query parameters in your daily work. It allows you to add, modify, enable, disable or delete the query params through a little pop-up as you could see in the screenshots above. Just add the query params and hit reload!                    

Extension Basic Information

Name Query-Rider Query-Rider
ID adgkhlljnhopgbbckknbdlkdgdajdkll
Official URL https://chromewebstore.google.com/detail/query-rider/adgkhlljnhopgbbckknbdlkdgdajdkll
Description This extension allows you to append and modify Query Parameters in URL
File Size 11.67 KB
Installation Count 27
Current Version mv3-beta
Last Updated 2021-06-08
Publish Date 2020-06-27
Rating 5.00/5 Total 3 Ratings
Developer Satyam Mishra
Email [email protected]
Payment Type free
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Query-Rider",
    "author": "Satyam Mishra",
    "description": "This extension allows you to append and modify Query Parameters in URL",
    "version": "1.1.0",
    "version_name": "mv3-beta",
    "default_locale": "en",
    "content_scripts": [
        {
            "js": [
                "popup.js"
            ],
            "run_at": "document_idle",
            "matches": [
                ""
            ]
        }
    ],
    "icons": {
        "128": "extension_icon.png"
    },
    "action": {
        "default_icon": "extension_icon.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "storage",
        "activeTab"
    ],
    "host_permissions": [
        ""
    ],
    "short_name": "Append\/Modify Query Params in URL"
}