Limit Cookie Lifetime

Set a maximum limit on cookie lifetime. By Nick Semenkovich

Limit Cookie Lifetimeとは何ですか?

Limit Cookie Lifetimeはhttps://semenkovich.comによって開発されたChromeの拡張機能で、その主な機能は「Set a maximum limit on cookie lifetime. By Nick Semenkovich 」です。

拡張機能のスクリーンショット

screenshot

Limit Cookie Lifetime拡張機能のCRXファイルをダウンロード

Limit Cookie Lifetime拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        Persistent cookies are annoying. This extension limits the maximum lifetime of a cookie in Chrome.

This extension:
- Invokes itself every two hours to set cookie lifetime limits
- Limits cookies to a 21-day expiry (modifiable on the options page)
- Takes almost zero RAM (runs as a non-persistent background page)
- Is open source! (See below)


======== CODE ========
Please contribute! https://github.com/semenko/chrome-limit-cookie-lifetime

Copyright 2014, Nick Semenkovich 

Released under the MIT License. See LICENSE for details.                    

拡張機能の基本情報

名前 Limit Cookie Lifetime Limit Cookie Lifetime
ID pplilgolafepgkdmocfpgblngcpdlopm
公式URL https://chromewebstore.google.com/detail/limit-cookie-lifetime/pplilgolafepgkdmocfpgblngcpdlopm
説明 Set a maximum limit on cookie lifetime. By Nick Semenkovich
ファイルサイズ 12.82 KB
インストール数 149
現在のバージョン 2014.6.4
最終更新日 2014-07-04
公開日 2014-07-04
評価 3.75/5 合計 4 レビュー
開発者 https://semenkovich.com
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/semenko/chrome-limit-cookie-lifetime
ヘルプページのURL https://github.com/semenko/chrome-limit-cookie-lifetime/issues
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "author": "Nick Semenkovich",
    "content_security_policy": "script-src 'self'; object-src 'self'",
    "description": "Set a maximum limit on cookie lifetime. By Nick Semenkovich ",
    "manifest_version": 2,
    "name": "Limit Cookie Lifetime",
    "options_page": "options.html",
    "permissions": [
        "alarms",
        "cookies",
        "*:\/\/*\/*"
    ],
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "version": "2014.6.4"
}