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