Add Query String To URL

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

Was ist Add Query String To URL?

Add Query String To URL ist eine Chrome-Erweiterung, die von iamraghvendrapathak entwickelt wurde, und ihr Hauptmerkmal ist "This easy and lightweight extension can be used to add a query string to the any url.".

Erweiterungsscreenshots

screenshot

Add Query String To URL-Erweiterungs-CRX-Datei herunterladen

Laden Sie Add Query String To URL-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Add Query String To URL Add Query String To URL
ID plakklnddafbgeodimojmfgneiadigkp
Offizielle URL https://chromewebstore.google.com/detail/add-query-string-to-url/plakklnddafbgeodimojmfgneiadigkp
Beschreibung This easy and lightweight extension can be used to add a query string to the any url.
Dateigröße 7 KB
Installationsanzahl 36
Aktuelle Version 0.0.1
Letztes Update 2022-10-25
Veröffentlichungsdatum 2022-10-24
Bewertung 5.00/5 Insgesamt 2 Bewertungen
Entwickler iamraghvendrapathak
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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"
            ]
        }
    ]
}