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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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
URL หน้าช่วยเหลือ 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"
}