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
官方網址 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
電子郵箱 [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"
}