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" ] } } |