Query-Rider

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

Cos'è Query-Rider?

Query-Rider è un'estensione di Chrome sviluppata da Satyam Mishra, e la sua funzione principale è "This extension allows you to append and modify Query Parameters in URL".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Query-Rider

Scarica i file di estensione Query-Rider in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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!                    

Informazioni di Base sull'Estensione

Nome Query-Rider Query-Rider
ID adgkhlljnhopgbbckknbdlkdgdajdkll
URL Ufficiale https://chromewebstore.google.com/detail/query-rider/adgkhlljnhopgbbckknbdlkdgdajdkll
Descrizione This extension allows you to append and modify Query Parameters in URL
Dimensione del File 11.67 KB
Conteggio Installazioni 27
Versione Corrente mv3-beta
Ultimo Aggiornamento 2021-06-08
Data di Pubblicazione 2020-06-27
Valutazione 5.00/5 Totale 3 Valutazioni
Sviluppatore Satyam Mishra
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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"
}