Netscaler Cookie Decoder

Decode the Netscaler Cookie

Netscaler Cookie Decoderคืออะไร?

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

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

screenshot
screenshot

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

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

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

                        Citrix Netscaler Load Balancer uses an encoded cookie to maintain stateful connections from client to 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 chrome extension reverse the Netscaler algorithm used to encode the data, and exposes the IP address and TCP port of the host that is actually handling your connection. It is based on the work of catalyst256 and is intend to to help developers and administrators in trobleshooting situations.                    

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

ชื่อ Netscaler Cookie Decoder Netscaler Cookie Decoder
ID iggaenbokihbfaggapmcifgmdmkdcjon
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/netscaler-cookie-decoder/iggaenbokihbfaggapmcifgmdmkdcjon
คำอธิบาย Decode the Netscaler Cookie
ขนาดไฟล์ 98.09 KB
จำนวนการติดตั้ง 231
เวอร์ชันปัจจุบัน 1.0
อัปเดตครั้งล่าสุด 2021-04-21
วันที่เผยแพร่ 2021-04-10
ผู้พัฒนา https://joaofelipe.net
อีเมล [email protected]
ประเภทการชำระเงิน free
URL หน้าช่วยเหลือ https://github.com/joaofelipes/netscaler-cookie-decoder/issues
ภาษาที่รองรับ en-US
manifest.json
{
    "browser_action": {
        "content_scripts": [
            {
                "css": [
                    "style.css"
                ],
                "js": [
                    "jquery.min.js"
                ]
            }
        ],
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "description": "Decode the Netscaler Cookie",
    "manifest_version": 2,
    "name": "Netscaler Cookie Decoder",
    "permissions": [
        "cookies",
        "",
        "tabs"
    ],
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "1.0",
    "web_accessible_resources": [
        "http:\/\/ajax.googleapis.com\/ajax\/libs\/jquery\/2.1.1\/jquery.min.js"
    ]
}