Query-Rider

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

Was ist Query-Rider?

Query-Rider ist eine Chrome-Erweiterung, die von Satyam Mishra entwickelt wurde, und ihr Hauptmerkmal ist "This extension allows you to append and modify Query Parameters in URL".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

Query-Rider-Erweiterungs-CRX-Datei herunterladen

Laden Sie Query-Rider-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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!                    

Grundlegende Informationen zur Erweiterung

Name Query-Rider Query-Rider
ID adgkhlljnhopgbbckknbdlkdgdajdkll
Offizielle URL https://chromewebstore.google.com/detail/query-rider/adgkhlljnhopgbbckknbdlkdgdajdkll
Beschreibung This extension allows you to append and modify Query Parameters in URL
Dateigröße 11.67 KB
Installationsanzahl 27
Aktuelle Version mv3-beta
Letztes Update 2021-06-08
Veröffentlichungsdatum 2020-06-27
Bewertung 5.00/5 Insgesamt 3 Bewertungen
Entwickler Satyam Mishra
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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"
}