Limit Cookie Lifetime

Set a maximum limit on cookie lifetime. By Nick Semenkovich

Was ist Limit Cookie Lifetime?

Limit Cookie Lifetime ist eine Chrome-Erweiterung, die von https://semenkovich.com entwickelt wurde, und ihr Hauptmerkmal ist "Set a maximum limit on cookie lifetime. By Nick Semenkovich ".

Erweiterungsscreenshots

screenshot

Limit Cookie Lifetime-Erweiterungs-CRX-Datei herunterladen

Laden Sie Limit Cookie Lifetime-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Limit Cookie Lifetime Limit Cookie Lifetime
ID pplilgolafepgkdmocfpgblngcpdlopm
Offizielle URL https://chromewebstore.google.com/detail/limit-cookie-lifetime/pplilgolafepgkdmocfpgblngcpdlopm
Beschreibung Set a maximum limit on cookie lifetime. By Nick Semenkovich
Dateigröße 12.82 KB
Installationsanzahl 149
Aktuelle Version 2014.6.4
Letztes Update 2014-07-04
Veröffentlichungsdatum 2014-07-04
Bewertung 3.75/5 Insgesamt 4 Bewertungen
Entwickler https://semenkovich.com
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/semenko/chrome-limit-cookie-lifetime
Hilfeseite URL https://github.com/semenko/chrome-limit-cookie-lifetime/issues
Unterstützte Sprachen 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"
}