X-Forwarded-For Header

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

X-Forwarded-For Header란 무엇입니까?

X-Forwarded-For Header은(는) Philip Lawrence에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension allows you quickly to set the X-Forwarded-For HTTP Header"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

X-Forwarded-For Header 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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                    

확장 프로그램 기본 정보

이름 X-Forwarded-For Header X-Forwarded-For Header
ID hkghghbnihliadkabmlcmcgmffllglin
공식 URL https://chromewebstore.google.com/detail/x-forwarded-for-header/hkghghbnihliadkabmlcmcgmffllglin
설명 This extension allows you quickly to set the X-Forwarded-For HTTP Header
파일 크기 27.84 KB
설치 횟수 60,915
현재 버전 0.6.2
최근 업데이트 2020-06-27
출시 날짜 2020-06-26
평점 4.61/5 총 18 개의 평점
개발자 Philip Lawrence
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/MisterPhilip/x-forwarded-for
도움말 페이지 URL https://github.com/MisterPhilip/x-forwarded-for/issues
개인정보 보호 정책 페이지 URL https://omnibug.io/privacy-policy
지원되는 언어 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",
        ""
    ]
}