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
官方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"
    }
}