Query Parameter Manager

A Manager development tool for changing, manipulating, and storing url query parameters

O que é Query Parameter Manager?

Query Parameter Manager é uma extensão do Chrome desenvolvida por Unknown, e sua principal característica é "A Manager development tool for changing, manipulating, and storing url query parameters".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Query Parameter Manager

Baixe arquivos de extensão Query Parameter Manager 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

                        # URL Query Parameter Manager


## Purpose and function

This application is meant to be a useful tool in assistance of web development. It can be used to:

1. Read and organize query parameters from the current web page
2. Store groups of key and value pairs as configurations
3. Manage suggested key and value pairs
4. Manage stored configurations
5. Import and export stored key and value pairs and configurations

##  Parameter Screen

You can view the current and altered urls on this screen. Edit the url query parameters by editing the `key` and `value` fields, deleting them using the `-` Buttons, and adding new fields by using the `+` button. 

Key and values names are auto suggested based on stored keys and values as well as saved configurations. To see the full list of suggested keys and values, delete the value in the field and click on it.

Save configurations By entering a configuration name in the `configuration name` field and then clicking the `Save Configuration` button.

If you have configurations saved, clicking on the field will toggle an autocomplete menu that will allow you to switch between configurations.

Click the `Set Url` button and it will set the url displayed as `New url` in your browser address bar. If you have made changes to the url you do not wish to save, you can click the the `Revert Url` button to revert the set browser address url. Note: setting the url does not navigate you to the page, you must still click on the address bar and press enter to navigate to the set url.

##  Stored Keys & Values Screen

This screen can be used to view, add, and remove suggested key and value pairs visible on the Parameters screen when entering new values or editing existing ones.

Keys and values entered when saving a configuration or importing one will appear here. To enter a new key or value, enter into the appropriate field and click the + icon. Keys and values entered must be unique. Click the `trash can` icon next a key or value to delete it.

Clicking on a specific key will display the stored values for that key below.

Click the `Export Keys and Values` button to export the stored keys and values to a JSON file formatted in the following structure:

Click the `Delete all Keys and Values` button to permanently and irreversibly delete stored keys and values


##  Import Screen

This screen will allow you to import JSON files for both suggested keys and values as well as configurations. In order to do so please follow the import guide outlined on this page.


##  Manage Configuration Screen



This screen will allow you to view and remove existing stored configurations. 

To remove a configuration, click the `trash can` icon next to the relevant configuration. 

To export all stored configurations, click the `Export Configurations` button.

To delete all stored configurations, click the `Delete All Configurations` button and follow the prompts. Please be aware that this is permanent and irreversible!



### Technologies used:

- Storage api
- Windows and Tabs apis
- React
- React Router
- Filesaver.js


### About me:

Hello! My name is Julia Finarovsky. I am a classically trained concert pianist and software engineer working at an awesome company in full stack development. 


Disclaimer: This app is open source and maintained by me. While it is freeware, donations are appreciated! Paypal may be sent to [email protected]

If you would like to contribute or make feature requests, please visit: https://github.com/Juliafin/urlQueryParamterManager

Please leave a review in the chrome extension store if you can and star the repo!                    

Informações Básicas da Extensão

Nome Query Parameter Manager Query Parameter Manager
ID lgjeeiiekpfdclphnjjbjbcchdhkgepb
URL Oficial https://chromewebstore.google.com/detail/query-parameter-manager/lgjeeiiekpfdclphnjjbjbcchdhkgepb
Descrição A Manager development tool for changing, manipulating, and storing url query parameters
Tamanho do Arquivo 1.24 MB
Contagem de Instalações 126
Versão Atual 1.3
Última Atualização 2020-06-06
Data de Publicação 2020-06-06
Classificação 5.00/5 Total de 2 Avaliações
Desenvolvedor Unknown
Tipo de Pagamento free
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Query Parameter Manager",
    "version": "1.3",
    "description": "A Manager development tool for changing, manipulating, and storing url query parameters",
    "manifest_version": 2,
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "icons": {
        "16": "QueryParameterIcon.png",
        "48": "QueryParameterIcon.png",
        "128": "QueryParameterIcon.png"
    },
    "page_action": {
        "default_popup": "\/build\/index.html"
    },
    "commands": {
        "_execute_page_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+L",
                "mac": "Ctrl+Shift+L"
            }
        }
    },
    "permissions": [
        "declarativeContent",
        "storage",
        "webNavigation",
        "tabs",
        "activeTab",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "author": "Julia Finarovsky",
    "homepage_url": "https:\/\/github.com\/Juliafin\/urlQueryParamterManager"
}