Limit Cookie Lifetime

Set a maximum limit on cookie lifetime. By Nick Semenkovich

Wat is Limit Cookie Lifetime?

Limit Cookie Lifetime is een Chrome-extensie ontwikkeld door https://semenkovich.com, en de belangrijkste functie is "Set a maximum limit on cookie lifetime. By Nick Semenkovich ".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Limit Cookie Lifetime

Download Limit Cookie Lifetime-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Limit Cookie Lifetime Limit Cookie Lifetime
ID pplilgolafepgkdmocfpgblngcpdlopm
Officiële URL https://chromewebstore.google.com/detail/limit-cookie-lifetime/pplilgolafepgkdmocfpgblngcpdlopm
Beschrijving Set a maximum limit on cookie lifetime. By Nick Semenkovich
Bestandsgrootte 12.82 KB
Aantal Installaties 149
Huidige Versie 2014.6.4
Laatst Bijgewerkt 2014-07-04
Publicatiedatum 2014-07-04
Beoordeling 3.75/5 Totaal 4 Beoordelingen
Ontwikkelaar https://semenkovich.com
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/semenko/chrome-limit-cookie-lifetime
Help Pagina-URL https://github.com/semenko/chrome-limit-cookie-lifetime/issues
Ondersteunde Talen 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"
}