EditURL

Allow to edit decoded GET parameters on current page

What is EditURL?

EditURL is a Chrome extension developed by lukyanov, and its main feature is "Allow to edit decoded GET parameters on current page".

Extension Screenshots

screenshot

Download EditURL Extension CRX File

Download EditURL extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name EditURL EditURL
ID oonajjdihojcjhmmalicajeepammcooi
Official URL https://chromewebstore.google.com/detail/editurl/oonajjdihojcjhmmalicajeepammcooi
Description Allow to edit decoded GET parameters on current page
File Size 9.3 KB
Installation Count 404
Current Version 1.1
Last Updated 2013-09-12
Publish Date 2013-09-12
Rating 5.00/5 Total 7 Ratings
Developer lukyanov
Email [email protected]
Payment Type free
Supported Languages 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"
    }
}