Header-Editor

Alter your HTTP request headers on the fly

Apa itu Header-Editor?

Header-Editor adalah ekstensi Chrome yang dikembangkan oleh 67726e, dan fitur utamanya adalah "Alter your HTTP request headers on the fly".

Screenshot Ekstensi

screenshot
screenshot

Unduh Berkas CRX Ekstensi Header-Editor

Unduh file ekstensi Header-Editor 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

                        Header-Editor is an extension that will allow you to create and use arbitrary HTTP headers in Chrome.

The following permissions are needed for Header-Editor to run:

-  webRequest - Used to access the requests being sent out.
-  webRequestBlocking - So that headers are modified before being sent.
-   - All URLs are asked for since the extension cannot know ahead of time where it will be needed.

Note: Response headers do not appear in the Network Inspector, however they are supplied to your code. For more details, see:

- http://hexcoder.us/2013/08/08/response-headers-and-chrome-extensions/
- https://code.google.com/p/chromium/issues/detail?id=258064                    

Informasi Dasar Ekstensi

Nama Header-Editor Header-Editor
ID pkokmcnklmgbepioackopoknkdlhefjl
URL Resmi https://chromewebstore.google.com/detail/header-editor/pkokmcnklmgbepioackopoknkdlhefjl
Deskripsi Alter your HTTP request headers on the fly
Ukuran File 131 KB
Jumlah Instalasi 7,008
Versi Saat Ini 2.2.0
Terakhir Diperbarui 2015-04-13
Tanggal Publikasi 2015-04-13
Penilaian 3.65/5 Total 17 Penilaian
Pengembang 67726e
Tipe Pembayaran free
Bahasa yang Didukung en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Header-Editor",
    "description": "Alter your HTTP request headers on the fly",
    "version": "2.2.0",
    "default_locale": "en",
    "options_page": "\/src\/html\/options.html",
    "permissions": [
        "webRequest",
        "webRequestBlocking",
        ""
    ],
    "browser_action": {
        "default_icon": ".\/resources\/images\/pencil-icon_48.png",
        "default_popup": "\/src\/html\/popup.html"
    },
    "background": {
        "scripts": [
            "\/src\/js\/background.js",
            "\/src\/js\/upgrade.js"
        ]
    },
    "icons": {
        "16": "\/resources\/images\/pencil-icon_16.png",
        "48": "\/resources\/images\/pencil-icon_48.png",
        "128": "\/resources\/images\/pencil-icon_128.png"
    }
}