X-Forwarded-For Header

This extension allows you quickly to set the X-Forwarded-For HTTP Header

X-Forwarded-For Header là gì?

X-Forwarded-For Header là một tiện ích mở rộng Chrome được phát triển bởi Philip Lawrence, và tính năng chính của nó là "This extension allows you quickly to set the X-Forwarded-For HTTP Header".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng X-Forwarded-For Header

Tải xuống các tệp mở rộng X-Forwarded-For Header dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        This extension allows you to quickly update the X-Forwarded-For, X-Originating-IP, X-Remote-IP, and X-Remote-Addr HTTP headers for various testing purposes.


Changelog:
v0.6.2 - Fixed a bug that interfered with the Firefox version of this extension
v0.6.1 - Fixes issue with CORS preflight requests
v0.6.0 - Allows for multiple IP addresses (space and/or comma delimited) and includes minor UI fixes
v0.5.0 - Added X-Originating-IP, X-Remote-IP, and X-Remote-Addr as header options. Added IPv6 ability                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên X-Forwarded-For Header X-Forwarded-For Header
ID hkghghbnihliadkabmlcmcgmffllglin
URL Chính Thức https://chromewebstore.google.com/detail/x-forwarded-for-header/hkghghbnihliadkabmlcmcgmffllglin
Mô tả This extension allows you quickly to set the X-Forwarded-For HTTP Header
Kích Thước Tệp 27.84 KB
Số Lần Cài Đặt 60,915
Phiên Bản Hiện Tại 0.6.2
Cập Nhật Lần Cuối 2020-06-27
Ngày Phát Hành 2020-06-26
Đánh Giá 4.61/5 Tổng số 18 Đánh Giá
Nhà Phát Triển Philip Lawrence
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/MisterPhilip/x-forwarded-for
URL Trang Trợ Giúp https://github.com/MisterPhilip/x-forwarded-for/issues
URL Trang Chính Sách Bảo Mật https://omnibug.io/privacy-policy
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "X-Forwarded-For Header",
    "description": "This extension allows you quickly to set the X-Forwarded-For HTTP Header",
    "author": "Philip Lawrence",
    "version": "0.6.2",
    "background": {
        "scripts": [
            "browser-polyfill.js",
            "eventPage.js"
        ],
        "persistent": true
    },
    "icons": {
        "32": "assets\/logo-32.png",
        "38": "assets\/logo-38.png",
        "64": "assets\/logo-64.png",
        "128": "assets\/logo-128.png"
    },
    "browser_action": {
        "default_icon": {
            "16": "assets\/logo-16-bw.png",
            "32": "assets\/logo-32-bw.png",
            "38": "assets\/logo-38-bw.png"
        },
        "default_title": "Set X-Forwarded-For IP",
        "default_popup": "options.html"
    },
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "permissions": [
        "storage",
        "webRequest",
        "webRequestBlocking",
        ""
    ]
}