Limit Cookie Lifetime

Set a maximum limit on cookie lifetime. By Nick Semenkovich

Co to jest Limit Cookie Lifetime?

Limit Cookie Lifetime to rozszerzenie Chrome opracowane przez https://semenkovich.com, a jego główną funkcją jest „Set a maximum limit on cookie lifetime. By Nick Semenkovich ”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Limit Cookie Lifetime

Pobierz pliki rozszerzeń Limit Cookie Lifetime w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Limit Cookie Lifetime Limit Cookie Lifetime
ID pplilgolafepgkdmocfpgblngcpdlopm
Oficjalny URL https://chromewebstore.google.com/detail/limit-cookie-lifetime/pplilgolafepgkdmocfpgblngcpdlopm
Opis Set a maximum limit on cookie lifetime. By Nick Semenkovich
Rozmiar pliku 12.82 KB
Liczba instalacji 149
Aktualna Wersja 2014.6.4
Ostatnia Aktualizacja 2014-07-04
Data Publikacji 2014-07-04
Ocena 3.75/5 Łącznie 4 Oceny
Deweloper https://semenkovich.com
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/semenko/chrome-limit-cookie-lifetime
Adres URL Strony Pomocy https://github.com/semenko/chrome-limit-cookie-lifetime/issues
Obsługiwane Języki 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"
}