Startup Cookie Destroyer

Remove unwanted cookies and site data on start-up, and manually from the toolbar.

Startup Cookie Destroyer là gì?

Startup Cookie Destroyer là một tiện ích mở rộng Chrome được phát triển bởi Aaron Horler, và tính năng chính của nó là "Remove unwanted cookies and site data on start-up, and manually from the toolbar.".

Ả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 Startup Cookie Destroyer

Tải xuống các tệp mở rộng Startup Cookie Destroyer 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

                        Remove unwanted cookies and all other site data on startup, and manually from the extension toolbar.

Wanted cookies are defined using a white list.

GitHub source - https://github.com/aghorler/Startup-Cookie-Destroyer

CHANGELOG

1.2.0 - Add cacheStorage option to browsing data clear, attempted return to Chrome Web Store.
1.1.0 - Automatic option saving.
1.0.3 - Logic improvements. Hover descriptions on options page.
1.0.2 - The extension no longer clears all cookies on installation.
1.0.1 - First release.                    

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

Tên Startup Cookie Destroyer Startup Cookie Destroyer
ID gnofoiakeednmambnlgcooiflejppmoj
URL Chính Thức https://chromewebstore.google.com/detail/startup-cookie-destroyer/gnofoiakeednmambnlgcooiflejppmoj
Mô tả Remove unwanted cookies and site data on start-up, and manually from the toolbar.
Kích Thước Tệp 11.96 KB
Số Lần Cài Đặt 214
Phiên Bản Hiện Tại 1.2.0
Cập Nhật Lần Cuối 2022-02-28
Ngày Phát Hành 2018-05-16
Đánh Giá 4.33/5 Tổng số 6 Đánh Giá
Nhà Phát Triển Aaron Horler
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/aghorler/Startup-Cookie-Destroyer
URL Trang Trợ Giúp https://github.com/aghorler/Startup-Cookie-Destroyer
URL Trang Chính Sách Bảo Mật https://aaronhorler.com/privacy.txt
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Startup Cookie Destroyer",
    "version": "1.2.0",
    "manifest_version": 2,
    "description": "Remove unwanted cookies and site data on start-up, and manually from the toolbar.",
    "background": {
        "scripts": [
            "\/js\/background.js"
        ],
        "persistent": false
    },
    "icons": {
        "128": "\/img\/icon128.png"
    },
    "browser_action": {
        "name": "Clear cookies and site data."
    },
    "options_ui": {
        "page": "\/html\/options.html",
        "chrome_style": true,
        "open_in_tab": false
    },
    "permissions": [
        "browsingData",
        "storage",
        "cookies",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ]
}