Startup Cookie Destroyer

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

Startup Cookie Destroyerคืออะไร?

Startup Cookie Destroyer เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Aaron Horler และคุณลักษณะหลักของมันคือ "Remove unwanted cookies and site data on start-up, and manually from the toolbar."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Startup Cookie Destroyer

ดาวน์โหลดไฟล์ส่วนขยาย Startup Cookie Destroyer ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

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

                        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.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Startup Cookie Destroyer Startup Cookie Destroyer
ID gnofoiakeednmambnlgcooiflejppmoj
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/startup-cookie-destroyer/gnofoiakeednmambnlgcooiflejppmoj
คำอธิบาย Remove unwanted cookies and site data on start-up, and manually from the toolbar.
ขนาดไฟล์ 11.96 KB
จำนวนการติดตั้ง 214
เวอร์ชันปัจจุบัน 1.2.0
อัปเดตครั้งล่าสุด 2022-02-28
วันที่เผยแพร่ 2018-05-16
คะแนน 4.33/5 รวมทั้งหมด 6 คะแนน
ผู้พัฒนา Aaron Horler
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/aghorler/Startup-Cookie-Destroyer
URL หน้าช่วยเหลือ https://github.com/aghorler/Startup-Cookie-Destroyer
URL หน้านโยบายความเป็นส่วนตัว https://aaronhorler.com/privacy.txt
ภาษาที่รองรับ 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:\/\/*\/*"
    ]
}