Add Query String To URL

This easy and lightweight extension can be used to add a query string to the any url.

Qu'est-ce que Add Query String To URL ?

Add Query String To URL est une extension Chrome développée par iamraghvendrapathak, et sa fonction principale est "This easy and lightweight extension can be used to add a query string to the any url.".

Captures d'Écran de l'Extension

screenshot

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

Téléchargez les fichiers d'extension Add Query String To 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

                        Tired of adding query string to the url? This easy and lightweight extension helps you to add a query string to any url. All you need is to turn on the toggle.                    

Informations de Base sur l'Extension

Nom Add Query String To URL Add Query String To URL
ID plakklnddafbgeodimojmfgneiadigkp
URL Officiel https://chromewebstore.google.com/detail/add-query-string-to-url/plakklnddafbgeodimojmfgneiadigkp
Description This easy and lightweight extension can be used to add a query string to the any url.
Taille du Fichier 7 KB
Nombre d'Installations 36
Version Actuelle 0.0.1
Dernière Mise à Jour 2022-10-25
Date de Publication 2022-10-24
Évaluation 5.00/5 Total 2 Évaluations
Développeur iamraghvendrapathak
Email [email protected]
Type de Paiement free
Langues Prises en Charge en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "author": "Raghvendra Pathak",
    "name": "Add Query String To URL",
    "short_name": "AQSTU",
    "description": "This easy and lightweight extension can be used to add a query string to the any url.",
    "version": "0.0.1",
    "manifest_version": 3,
    "action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html",
        "default_title": "Add Query String To URL"
    },
    "icons": {
        "48": "icon.png"
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "background.js"
            ]
        }
    ]
}