CookieSlice

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

什麼是CookieSlice?

CookieSlice是由faithundying開發的Chrome擴展程式,該擴展的主要功能是“Allows a user to specify cookies by name to keep unique per Browser Tab instance.”。

擴展截圖

screenshot

下載CookieSlice擴展crx文件

下載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
官方網址 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"
    }
}