Url Editor PRO

Url parser which makes editing complex URLs as easy as possible. Features: params decoding, auto-suggest, keyboard navigation..

Url Editor PROคืออะไร?

Url Editor PRO เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Max Chodorowski และคุณลักษณะหลักของมันคือ "Url parser which makes editing complex URLs as easy as possible. Features: params decoding, auto-suggest, keyboard navigation.."

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

screenshot
screenshot

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

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

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

                        Features:
* parse url and show its chunks in easy to navigate fields
* automatic or manual redirections
* auto-refresh
* manual and automatic url-encoding/decoding parameters
* Base64 params encoding/decoding
* auto-suggest functionality
* suggestions manager (on options page)
* sorting params (easy to find the one you're looking for)
* keyboard shortcuts for all major actions
* open submitted url in current/new tab or new window
* open-source (feel free to contribute)                    

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

ชื่อ Url Editor PRO Url Editor PRO
ID maoigfcibanjdgnepaiiadjhgmejclea
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/url-editor-pro/maoigfcibanjdgnepaiiadjhgmejclea
คำอธิบาย Url parser which makes editing complex URLs as easy as possible. Features: params decoding, auto-suggest, keyboard navigation..
ขนาดไฟล์ 98.22 KB
จำนวนการติดตั้ง 4,539
เวอร์ชันปัจจุบัน 0.9.4.2
อัปเดตครั้งล่าสุด 2020-04-16
วันที่เผยแพร่ 2020-04-14
คะแนน 4.56/5 รวมทั้งหมด 9 คะแนน
ผู้พัฒนา Max Chodorowski
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Url Editor PRO",
    "description": "Url parser which makes editing complex URLs as easy as possible. Features: params decoding, auto-suggest, keyboard navigation..",
    "version": "0.9.4.2",
    "permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "tabs",
        "windows",
        "webRequest",
        "webRequestBlocking",
        "contextMenus"
    ],
    "icons": {
        "16": "img\/edit_16.png",
        "48": "img\/edit_32.png",
        "128": "img\/edit.png"
    },
    "browser_action": {
        "default_icon": "img\/edit_32.png",
        "default_popup": "popup.html"
    },
    "options_page": "options.html",
    "background": {
        "scripts": [
            "app.js",
            "background.js"
        ]
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+U"
            }
        },
        "GoToHomepage": {
            "suggested_key": {
                "default": "Ctrl+Shift+H",
                "mac": "Command+Shift+H"
            },
            "description": "Go to homepage (root path)"
        },
        "RedirectUseFirstRule": {
            "suggested_key": {
                "default": "Ctrl+Shift+Y",
                "mac": "Command+Shift+Y"
            },
            "description": "Redirect using first rule"
        }
    },
    "content_security_policy": "script-src 'self' https:\/\/www.google-analytics.com; object-src 'self'"
}