Query URL

Update url and links with custom query on the fly.

Qu'est-ce que Query URL ?

Query URL est une extension Chrome développée par crohrefdev, et sa fonction principale est "Update url and links with custom query on the fly.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Query URL

Téléchargez les fichiers d'extension Query URL au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Query URL Query URL
ID djgohjhdlcjbemnlhdpbphkmhjoenfdj
URL Officiel https://chromewebstore.google.com/detail/query-url/djgohjhdlcjbemnlhdpbphkmhjoenfdj
Description Update url and links with custom query on the fly.
Taille du Fichier 19.98 KB
Nombre d'Installations 35
Version Actuelle 1.0.0.3
Dernière Mise à Jour 2021-05-11
Date de Publication 2020-08-12
Évaluation 5.00/5 Total 2 Évaluations
Développeur crohrefdev
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/AlHota/query-url
URL de la Page d'Aide https://github.com/AlHota/query-url
Langues Prises en Charge 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"
            ]
        }
    ]
}