Add Query String To URL

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

Co to jest Add Query String To URL?

Add Query String To URL to rozszerzenie Chrome opracowane przez iamraghvendrapathak, a jego główną funkcją jest „This easy and lightweight extension can be used to add a query string to the any url.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Add Query String To URL

Pobierz pliki rozszerzeń Add Query String To URL w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Add Query String To URL Add Query String To URL
ID plakklnddafbgeodimojmfgneiadigkp
Oficjalny URL https://chromewebstore.google.com/detail/add-query-string-to-url/plakklnddafbgeodimojmfgneiadigkp
Opis This easy and lightweight extension can be used to add a query string to the any url.
Rozmiar pliku 7 KB
Liczba instalacji 36
Aktualna Wersja 0.0.1
Ostatnia Aktualizacja 2022-10-25
Data Publikacji 2022-10-24
Ocena 5.00/5 Łącznie 2 Oceny
Deweloper iamraghvendrapathak
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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"
            ]
        }
    ]
}