BIGIP Cookie Decoder

Decode BIGIP Cookie

BIGIP Cookie Decoderคืออะไร?

BIGIP Cookie Decoder เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://joaofelipe.net และคุณลักษณะหลักของมันคือ "Decode BIGIP Cookie"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย BIGIP Cookie Decoder

ดาวน์โหลดไฟล์ส่วนขยาย BIGIP Cookie Decoder ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        The F5 BIG-IP load balancer uses an encoded cookie to maintain stateful connections from the client to the server. These cookies are automatically sent in every request to the domain that set them. This allows a simple way to track each client’s server association for load balancing control.

This extension reverse the F5 algorithm used to encode the data, and exposes the IP address and TCP port of the host that is actually handling your connection. 

It was made to help administrators in trobleshooting situations. 

Note that non encrypted cookies are considered a security issue, and this extension will not work if your load balancer was configured to use the non reversible crypto.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ BIGIP Cookie Decoder BIGIP Cookie Decoder
ID fgbahkaekodceioljkpefkclechnccpl
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/bigip-cookie-decoder/fgbahkaekodceioljkpefkclechnccpl
คำอธิบาย Decode BIGIP Cookie
ขนาดไฟล์ 39.99 KB
จำนวนการติดตั้ง 3,833
เวอร์ชันปัจจุบัน 1.3
อัปเดตครั้งล่าสุด 2022-05-08
วันที่เผยแพร่ 2014-09-19
คะแนน 4.43/5 รวมทั้งหมด 7 คะแนน
ผู้พัฒนา https://joaofelipe.net
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://joaofelipe.net
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "BIGIP Cookie Decoder",
    "description": "Decode BIGIP Cookie",
    "version": "1.3",
    "permissions": [
        "cookies",
        "",
        "tabs"
    ],
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html",
        "content_scripts": [
            {
                "css": [
                    "style.css"
                ],
                "js": [
                    "jquery.min.js"
                ]
            }
        ]
    },
    "web_accessible_resources": [
        "http:\/\/ajax.googleapis.com\/ajax\/libs\/jquery\/2.1.1\/jquery.min.js"
    ]
}