Limit Cookie Lifetime

Set a maximum limit on cookie lifetime. By Nick Semenkovich

What is Limit Cookie Lifetime?

Limit Cookie Lifetime is a Chrome extension developed by https://semenkovich.com, and its main feature is "Set a maximum limit on cookie lifetime. By Nick Semenkovich ".

Extension Screenshots

screenshot

Download Limit Cookie Lifetime Extension CRX File

Download Limit Cookie Lifetime extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Limit Cookie Lifetime Limit Cookie Lifetime
ID pplilgolafepgkdmocfpgblngcpdlopm
Official URL https://chromewebstore.google.com/detail/limit-cookie-lifetime/pplilgolafepgkdmocfpgblngcpdlopm
Description Set a maximum limit on cookie lifetime. By Nick Semenkovich
File Size 12.82 KB
Installation Count 149
Current Version 2014.6.4
Last Updated 2014-07-04
Publish Date 2014-07-04
Rating 3.75/5 Total 4 Ratings
Developer https://semenkovich.com
Email [email protected]
Payment Type free
Extension Website https://github.com/semenko/chrome-limit-cookie-lifetime
Help Page URL https://github.com/semenko/chrome-limit-cookie-lifetime/issues
Supported Languages 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"
}