URL Query Decoder
This extension will break apart the query parameters in the url and decode them. Also allows you to copy them to the clipboard.
Что такое URL Query Decoder?
URL Query Decoder - это расширение Chrome, разработанное Unknown, и его основная функция - "This extension will break apart the query parameters in the url and decode them. Also allows you to copy them to the clipboard.".
Снимки экрана расширения
Скачать файл CRX расширения URL Query Decoder
Скачайте файлы расширений URL Query Decoder в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
This plugin will parse out the query parameters from a url, decode them, and display them in a popup. You can click the individual buttons to copy a paramter or you can copy portions manually. Icons from Aha-Soft Team http://www.aha-soft.com/ Creative Commons License
Основная информация о расширении
Название | URL Query Decoder |
ID | ejimgebkedeogomfckpbkbmoikpcdnce |
Официальный URL | https://chromewebstore.google.com/detail/url-query-decoder/ejimgebkedeogomfckpbkbmoikpcdnce |
Описание | This extension will break apart the query parameters in the url and decode them. Also allows you to copy them to the clipboard. |
Размер файла | 270 KB |
Количество установок | 696 |
Текущая Версия | 1.0 |
Последнее Обновление | 2015-04-29 |
Дата публикации | 2015-04-29 |
Рейтинг | 4.89/5 Всего 9 оценок |
Разработчик | Unknown |
Тип оплаты | free |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "URL Query Decoder", "description": "This extension will break apart the query parameters in the url and decode them. Also allows you to copy them to the clipboard.", "version": "1.0", "icons": { "16": "icon_16.png", "48": "icon_48.png", "128": "icon_128.png" }, "page_action": { "default_name": "Url Query Decoder", "default_icon": "icon_16.png", "default_popup": "popup.html" }, "permissions": [ "tabs", "clipboardWrite" ], "background": { "scripts": [ "plugin.js" ] } } |