Query URL

Update url and links with custom query on the fly.

Cos'è Query URL?

Query URL è un'estensione di Chrome sviluppata da crohrefdev, e la sua funzione principale è "Update url and links with custom query on the fly.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Query URL

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

                        Query URL extension resolves url custom queries. Simply add query or hash and extension will update url with defined query for you. Every html  tag will be updated with you query so that you do not need to add it manually to every link you follow.                    

Informazioni di Base sull'Estensione

Nome Query URL Query URL
ID djgohjhdlcjbemnlhdpbphkmhjoenfdj
URL Ufficiale https://chromewebstore.google.com/detail/query-url/djgohjhdlcjbemnlhdpbphkmhjoenfdj
Descrizione Update url and links with custom query on the fly.
Dimensione del File 19.98 KB
Conteggio Installazioni 35
Versione Corrente 1.0.0.3
Ultimo Aggiornamento 2021-05-11
Data di Pubblicazione 2020-08-12
Valutazione 5.00/5 Totale 2 Valutazioni
Sviluppatore crohrefdev
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/AlHota/query-url
URL della Pagina di Aiuto https://github.com/AlHota/query-url
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Query URL",
    "description": "Update url and links with custom query on the fly.",
    "version": "1.0.0.3",
    "content_security_policy": "default-src 'self'",
    "manifest_version": 2,
    "browser_action": {
        "default_icon": ".\/icons\/icon19.png",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": ".\/icons\/icon16.png",
        "19": ".\/icons\/icon19.png",
        "48": ".\/icons\/icon48.png",
        "128": ".\/icons\/icon128.png"
    },
    "permissions": [
        "activeTab",
        "tabs",
        "storage",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "*:\/\/*\/*"
            ],
            "js": [
                ".\/js\/main.js"
            ]
        }
    ]
}