CookieSlice

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

What is CookieSlice?

CookieSlice is a Chrome extension developed by faithundying, and its main feature is "Allows a user to specify cookies by name to keep unique per Browser Tab instance.".

Extension Screenshots

screenshot

Download CookieSlice Extension CRX File

Download CookieSlice extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name CookieSlice CookieSlice
ID dlcbodnekmddmoahignpcpmbcdgpdkcn
Official URL https://chrome.google.com/webstore/detail/cookieslice/dlcbodnekmddmoahignpcpmbcdgpdkcn
Description Allows a user to specify cookies by name to keep unique per Browser Tab instance.
File Size 11.1 KB
Installation Count 18
Current Version 1.0
Last Updated 2014-02-17
Publish Date 2014-02-17
Developer faithundying
Payment Type free
Supported Languages 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"
    }
}