Add Query String To URL

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

Что такое Add Query String To URL?

Add Query String To URL - это расширение Chrome, разработанное iamraghvendrapathak, и его основная функция - "This easy and lightweight extension can be used to add a query string to the any url.".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Add Query String To URL

Скачайте файлы расширений Add Query String To URL в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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.                    

Основная информация о расширении

Название Add Query String To URL Add Query String To URL
ID plakklnddafbgeodimojmfgneiadigkp
Официальный URL https://chromewebstore.google.com/detail/add-query-string-to-url/plakklnddafbgeodimojmfgneiadigkp
Описание This easy and lightweight extension can be used to add a query string to the any url.
Размер файла 7 KB
Количество установок 36
Текущая Версия 0.0.1
Последнее Обновление 2022-10-25
Дата публикации 2022-10-24
Рейтинг 5.00/5 Всего 2 оценок
Разработчик iamraghvendrapathak
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки 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"
            ]
        }
    ]
}