Add Query String To URL

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

Wat is Add Query String To URL?

Add Query String To URL is een Chrome-extensie ontwikkeld door iamraghvendrapathak, en de belangrijkste functie is "This easy and lightweight extension can be used to add a query string to the any url.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Add Query String To URL

Download Add Query String To URL-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Add Query String To URL Add Query String To URL
ID plakklnddafbgeodimojmfgneiadigkp
Officiële URL https://chromewebstore.google.com/detail/add-query-string-to-url/plakklnddafbgeodimojmfgneiadigkp
Beschrijving This easy and lightweight extension can be used to add a query string to the any url.
Bestandsgrootte 7 KB
Aantal Installaties 36
Huidige Versie 0.0.1
Laatst Bijgewerkt 2022-10-25
Publicatiedatum 2022-10-24
Beoordeling 5.00/5 Totaal 2 Beoordelingen
Ontwikkelaar iamraghvendrapathak
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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"
            ]
        }
    ]
}