CookieSlice

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

CookieSlice là gì?

CookieSlice là một tiện ích mở rộng Chrome được phát triển bởi faithundying, và tính năng chính của nó là "Allows a user to specify cookies by name to keep unique per Browser Tab instance.".

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

screenshot

Tải xuống tệp CRX của tiện ích mở rộng CookieSlice

Tải xuống các tệp mở rộng CookieSlice 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

                        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.                    

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

Tên CookieSlice CookieSlice
ID dlcbodnekmddmoahignpcpmbcdgpdkcn
URL Chính Thức https://chrome.google.com/webstore/detail/cookieslice/dlcbodnekmddmoahignpcpmbcdgpdkcn
Mô tả Allows a user to specify cookies by name to keep unique per Browser Tab instance.
Kích Thước Tệp 11.1 KB
Số Lần Cài Đặt 18
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2014-02-17
Ngày Phát Hành 2014-02-17
Nhà Phát Triển faithundying
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}