Add Query String To URL

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

O que é Add Query String To URL?

Add Query String To URL é uma extensão do Chrome desenvolvida por iamraghvendrapathak, e sua principal característica é "This easy and lightweight extension can be used to add a query string to the any url.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Add Query String To URL

Baixe arquivos de extensão Add Query String To URL no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Add Query String To URL Add Query String To URL
ID plakklnddafbgeodimojmfgneiadigkp
URL Oficial https://chromewebstore.google.com/detail/add-query-string-to-url/plakklnddafbgeodimojmfgneiadigkp
Descrição This easy and lightweight extension can be used to add a query string to the any url.
Tamanho do Arquivo 7 KB
Contagem de Instalações 36
Versão Atual 0.0.1
Última Atualização 2022-10-25
Data de Publicação 2022-10-24
Classificação 5.00/5 Total de 2 Avaliações
Desenvolvedor iamraghvendrapathak
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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"
            ]
        }
    ]
}