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 Max Chodorowski द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Url parser which makes editing complex URLs as easy as possible. Features: params decoding, auto-suggest, keyboard navigation.."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Url Editor PRO एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

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