CookieSlice

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

Wat is CookieSlice?

CookieSlice is een Chrome-extensie ontwikkeld door faithundying, en de belangrijkste functie is "Allows a user to specify cookies by name to keep unique per Browser Tab instance.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie CookieSlice

Download CookieSlice-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam CookieSlice CookieSlice
ID dlcbodnekmddmoahignpcpmbcdgpdkcn
Officiële URL https://chrome.google.com/webstore/detail/cookieslice/dlcbodnekmddmoahignpcpmbcdgpdkcn
Beschrijving Allows a user to specify cookies by name to keep unique per Browser Tab instance.
Bestandsgrootte 11.1 KB
Aantal Installaties 18
Huidige Versie 1.0
Laatst Bijgewerkt 2014-02-17
Publicatiedatum 2014-02-17
Ontwikkelaar faithundying
Betalingswijze free
Ondersteunde Talen 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"
    }
}