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是由Unknown开发的Chrome扩展程序,该扩展的主要功能是“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扩展crx文件
下载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" ] } } |