CookieSlice

Allows a user to specify cookies by name to keep unique per Browser Tab instance.

CookieSliceคืออะไร?

CookieSlice เป็นส่วนขยายของ Chrome ที่พัฒนาโดย faithundying และคุณลักษณะหลักของมันคือ "Allows a user to specify cookies by name to keep unique per Browser Tab instance."

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

screenshot

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

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

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

                        CookieSlice allows your browser to intercept incoming "Set-Cookie" headers and store those cookies in sessionStorage that is unique to a Browser Tab instance. What this enables you to do is have unique sessions for servers that use cookies to store the session ID. For instance, "ASP.NET_SessionId" is the name of the Microsoft .NET ASP cookie that stores the session ID. By letting CookieSlice intercept this cookie, you can have a unique session per tab. Specify which cookies to intercept or choose to intercept all incoming cookies. This does not intercept cookies set on the client side.                    

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

ชื่อ CookieSlice CookieSlice
ID dlcbodnekmddmoahignpcpmbcdgpdkcn
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/cookieslice/dlcbodnekmddmoahignpcpmbcdgpdkcn
คำอธิบาย Allows a user to specify cookies by name to keep unique per Browser Tab instance.
ขนาดไฟล์ 11.1 KB
จำนวนการติดตั้ง 18
เวอร์ชันปัจจุบัน 1.0
อัปเดตครั้งล่าสุด 2014-02-17
วันที่เผยแพร่ 2014-02-17
ผู้พัฒนา faithundying
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "CookieSlice",
    "description": "Allows a user to specify cookies by name to keep unique per Browser Tab instance.",
    "version": "1.0",
    "permissions": [
        "",
        "webRequest",
        "webRequestBlocking",
        "storage"
    ],
    "background": {
        "scripts": [
            "bg.js"
        ],
        "persistent": true
    },
    "browser_action": {
        "default_icon": "icon.png"
    },
    "options_page": "options.html",
    "icons": {
        "16": "icon.png",
        "48": "icon.png",
        "128": "icon.png"
    }
}