Limit Cookie Lifetime

Set a maximum limit on cookie lifetime. By Nick Semenkovich

ما هو Limit Cookie Lifetime؟

Limit Cookie Lifetime هو إضافة Chrome تم تطويرها بواسطة https://semenkovich.com، والميزة الرئيسية لها هي "Set a maximum limit on cookie lifetime. By Nick Semenkovich ".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Limit Cookie Lifetime

قم بتنزيل ملفات الامتداد Limit Cookie Lifetime بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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.                    

معلومات أساسية عن التمديد

الاسم Limit Cookie Lifetime Limit Cookie Lifetime
ID pplilgolafepgkdmocfpgblngcpdlopm
عنوان URL الرسمي https://chromewebstore.google.com/detail/limit-cookie-lifetime/pplilgolafepgkdmocfpgblngcpdlopm
الوصف Set a maximum limit on cookie lifetime. By Nick Semenkovich
حجم الملف 12.82 KB
عدد التثبيتات 149
النسخة الحالية 2014.6.4
آخر تحديث 2014-07-04
تاريخ النشر 2014-07-04
تقييم 3.75/5 مجموع تقييمات 4
المطور https://semenkovich.com
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/semenko/chrome-limit-cookie-lifetime
عنوان صفحة المساعدة https://github.com/semenko/chrome-limit-cookie-lifetime/issues
اللغات المدعومة 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"
}