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 مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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" ] } } |