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
电子邮箱 [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"
}