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.
Qu'est-ce que URL Query Decoder ?
URL Query Decoder est une extension Chrome développée par Unknown, et sa fonction principale est "This extension will break apart the query parameters in the url and decode them. Also allows you to copy them to the clipboard.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension URL Query Decoder
Téléchargez les fichiers d'extension URL Query Decoder au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | URL Query Decoder |
ID | ejimgebkedeogomfckpbkbmoikpcdnce |
URL Officiel | https://chromewebstore.google.com/detail/url-query-decoder/ejimgebkedeogomfckpbkbmoikpcdnce |
Description | This extension will break apart the query parameters in the url and decode them. Also allows you to copy them to the clipboard. |
Taille du Fichier | 270 KB |
Nombre d'Installations | 696 |
Version Actuelle | 1.0 |
Dernière Mise à Jour | 2015-04-29 |
Date de Publication | 2015-04-29 |
Évaluation | 4.89/5 Total 9 Évaluations |
Développeur | Unknown |
Type de Paiement | free |
Langues Prises en Charge | 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" ] } } |