Limit Cookie Lifetime

Set a maximum limit on cookie lifetime. By Nick Semenkovich

Vad är Limit Cookie Lifetime?

Limit Cookie Lifetime är en Chrome-tillägg utvecklad av https://semenkovich.com, och dess huvudfunktion är "Set a maximum limit on cookie lifetime. By Nick Semenkovich ".

Tilläggsskärmbilder

screenshot

Ladda ner Limit Cookie Lifetime-förlängningens CRX-fil

Ladda ner Limit Cookie Lifetime-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Limit Cookie Lifetime Limit Cookie Lifetime
ID pplilgolafepgkdmocfpgblngcpdlopm
Officiell webbadress https://chromewebstore.google.com/detail/limit-cookie-lifetime/pplilgolafepgkdmocfpgblngcpdlopm
Beskrivning Set a maximum limit on cookie lifetime. By Nick Semenkovich
Filstorlek 12.82 KB
Antal Installationer 149
Aktuell Version 2014.6.4
Senast Uppdaterad 2014-07-04
Publiceringsdatum 2014-07-04
Betyg 3.75/5 Totalt 4 Betyg
Utvecklare https://semenkovich.com
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/semenko/chrome-limit-cookie-lifetime
Hjälpsida URL https://github.com/semenko/chrome-limit-cookie-lifetime/issues
Stödda Språk 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"
}