Limit Cookie Lifetime

Set a maximum limit on cookie lifetime. By Nick Semenkovich

Qu'est-ce que Limit Cookie Lifetime ?

Limit Cookie Lifetime est une extension Chrome développée par https://semenkovich.com, et sa fonction principale est "Set a maximum limit on cookie lifetime. By Nick Semenkovich ".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Limit Cookie Lifetime

Téléchargez les fichiers d'extension Limit Cookie Lifetime au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Limit Cookie Lifetime Limit Cookie Lifetime
ID pplilgolafepgkdmocfpgblngcpdlopm
URL Officiel https://chromewebstore.google.com/detail/limit-cookie-lifetime/pplilgolafepgkdmocfpgblngcpdlopm
Description Set a maximum limit on cookie lifetime. By Nick Semenkovich
Taille du Fichier 12.82 KB
Nombre d'Installations 149
Version Actuelle 2014.6.4
Dernière Mise à Jour 2014-07-04
Date de Publication 2014-07-04
Évaluation 3.75/5 Total 4 Évaluations
Développeur https://semenkovich.com
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/semenko/chrome-limit-cookie-lifetime
URL de la Page d'Aide https://github.com/semenko/chrome-limit-cookie-lifetime/issues
Langues Prises en Charge 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"
}