Limit Cookie Lifetime

Set a maximum limit on cookie lifetime. By Nick Semenkovich

Limit Cookie Lifetime là gì?

Limit Cookie Lifetime là một tiện ích mở rộng Chrome được phát triển bởi https://semenkovich.com, và tính năng chính của nó là "Set a maximum limit on cookie lifetime. By Nick Semenkovich ".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Limit Cookie Lifetime

Tải xuống các tệp mở rộng Limit Cookie Lifetime dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Limit Cookie Lifetime Limit Cookie Lifetime
ID pplilgolafepgkdmocfpgblngcpdlopm
URL Chính Thức https://chromewebstore.google.com/detail/limit-cookie-lifetime/pplilgolafepgkdmocfpgblngcpdlopm
Mô tả Set a maximum limit on cookie lifetime. By Nick Semenkovich
Kích Thước Tệp 12.82 KB
Số Lần Cài Đặt 149
Phiên Bản Hiện Tại 2014.6.4
Cập Nhật Lần Cuối 2014-07-04
Ngày Phát Hành 2014-07-04
Đánh Giá 3.75/5 Tổng số 4 Đánh Giá
Nhà Phát Triển https://semenkovich.com
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/semenko/chrome-limit-cookie-lifetime
URL Trang Trợ Giúp https://github.com/semenko/chrome-limit-cookie-lifetime/issues
Ngôn Ngữ Được Hỗ Trợ 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"
}