Query Inject

Utility to inject query parameters before the page loads

Cos'è Query Inject?

Query Inject è un'estensione di Chrome sviluppata da matthew - developer, e la sua funzione principale è "Utility to inject query parameters before the page loads".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Query Inject

Scarica i file di estensione Query Inject 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

                        Utility to inject query parameters before the page loads                    

Informazioni di Base sull'Estensione

Nome Query Inject Query Inject
ID cjglgegdmjocojbgocdjnpkkeongjmlg
URL Ufficiale https://chromewebstore.google.com/detail/query-inject/cjglgegdmjocojbgocdjnpkkeongjmlg
Descrizione Utility to inject query parameters before the page loads
Dimensione del File 31.33 KB
Conteggio Installazioni 70
Versione Corrente 1.1.0
Ultimo Aggiornamento 2023-02-22
Data di Pubblicazione 2021-02-22
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore matthew - developer
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/matthewnitschke/query-inject
URL della Pagina di Aiuto https://github.com/matthewnitschke/query-inject/issues
Lingue Supportate en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Query Inject",
    "version": "1.1.0",
    "icons": {
        "16": "icons\/16-enabled.png",
        "48": "icons\/48-enabled.png",
        "128": "icons\/128-enabled.png"
    },
    "manifest_version": 3,
    "options_page": "src\/options\/index.html",
    "action": {
        "default_title": "Query Inject",
        "default_popup": "src\/options\/index.html"
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "run_at": "document_start",
            "matches": [
                ""
            ],
            "js": [
                "src\/inject\/inject.js"
            ]
        }
    ]
}