EditURL

Allow to edit decoded GET parameters on current page

EditURLคืออะไร?

EditURL เป็นส่วนขยายของ Chrome ที่พัฒนาโดย lukyanov และคุณลักษณะหลักของมันคือ "Allow to edit decoded GET parameters on current page"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย EditURL

ดาวน์โหลดไฟล์ส่วนขยาย EditURL ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        This extension allows you to edit GET parameters on any page.
It automatically decodes and encodes GET parameters for you.

For example url http://example.com/calc?set_var=x%3D3&expression=x%2B2#result
can be edited as:

  location:
    http://example.com/calc

  ?parameters:
    set_vat =    x=3
    expression =    x+2

  #hash:
    result                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ EditURL EditURL
ID oonajjdihojcjhmmalicajeepammcooi
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/editurl/oonajjdihojcjhmmalicajeepammcooi
คำอธิบาย Allow to edit decoded GET parameters on current page
ขนาดไฟล์ 9.3 KB
จำนวนการติดตั้ง 404
เวอร์ชันปัจจุบัน 1.1
อัปเดตครั้งล่าสุด 2013-09-12
วันที่เผยแพร่ 2013-09-12
คะแนน 5.00/5 รวมทั้งหมด 7 คะแนน
ผู้พัฒนา lukyanov
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "EditURL",
    "description": "Allow to edit decoded GET parameters on current page",
    "version": "1.1",
    "icons": {
        "16": "16x16.png",
        "48": "48x48.png",
        "128": "128x128.png"
    },
    "permissions": [
        "tabs"
    ],
    "browser_action": {
        "default_title": "Edit",
        "default_icon": "48x48.png",
        "default_popup": "popup.html"
    }
}