CookieSlice

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

Vad är CookieSlice?

CookieSlice är en Chrome-tillägg utvecklad av faithundying, och dess huvudfunktion är "Allows a user to specify cookies by name to keep unique per Browser Tab instance.".

Tilläggsskärmbilder

screenshot

Ladda ner CookieSlice-förlängningens CRX-fil

Ladda ner CookieSlice-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn CookieSlice CookieSlice
ID dlcbodnekmddmoahignpcpmbcdgpdkcn
Officiell webbadress https://chrome.google.com/webstore/detail/cookieslice/dlcbodnekmddmoahignpcpmbcdgpdkcn
Beskrivning Allows a user to specify cookies by name to keep unique per Browser Tab instance.
Filstorlek 11.1 KB
Antal Installationer 18
Aktuell Version 1.0
Senast Uppdaterad 2014-02-17
Publiceringsdatum 2014-02-17
Utvecklare faithundying
Betalningssätt free
Stödda Språk 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"
    }
}