EditURL

Allow to edit decoded GET parameters on current page

Apa itu EditURL?

EditURL adalah ekstensi Chrome yang dikembangkan oleh lukyanov, dan fitur utamanya adalah "Allow to edit decoded GET parameters on current page".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi EditURL

Unduh file ekstensi EditURL dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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                    

Informasi Dasar Ekstensi

Nama EditURL EditURL
ID oonajjdihojcjhmmalicajeepammcooi
URL Resmi https://chromewebstore.google.com/detail/editurl/oonajjdihojcjhmmalicajeepammcooi
Deskripsi Allow to edit decoded GET parameters on current page
Ukuran File 9.3 KB
Jumlah Instalasi 404
Versi Saat Ini 1.1
Terakhir Diperbarui 2013-09-12
Tanggal Publikasi 2013-09-12
Penilaian 5.00/5 Total 7 Penilaian
Pengembang lukyanov
Email [email protected]
Tipe Pembayaran free
Bahasa yang Didukung 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"
    }
}