Auto Clean

Cleans the history after every session.

Auto Cleanคืออะไร?

Auto Clean เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Yashwanth Remidi และคุณลักษณะหลักของมันคือ "Cleans the history after every session."

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Auto Clean

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

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

                        Auto Cleans the complete browsing history when you close the chrome window. Caution: It removes the complete history. It also counts the number of saved history urls in the memory and displays the number. Please only install if you want to keep deleting your history in normal mode. I built it for personal use where I want every session cleared when I close the chrome window.  This feature is available by default in Firefox, I just tried to replicate it. Thanks for your support. 

Caution(again): Only use in dev mode please.                    

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

ชื่อ Auto Clean Auto Clean
ID bjoblfhgnefjjilpbhamhdgnmgpbhhjh
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/auto-clean/bjoblfhgnefjjilpbhamhdgnmgpbhhjh
คำอธิบาย Cleans the history after every session.
ขนาดไฟล์ 58.28 KB
จำนวนการติดตั้ง 178
เวอร์ชันปัจจุบัน 1.1
อัปเดตครั้งล่าสุด 2020-04-30
วันที่เผยแพร่ 2020-04-29
คะแนน 4.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา Yashwanth Remidi
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Auto Clean",
    "description": "Cleans the history after every session.",
    "version": "1.1",
    "manifest_version": 2,
    "permissions": [
        "tabs",
        "history",
        "browsingData"
    ],
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    },
    "icons": {
        "16": "images\/icon16.png",
        "32": "images\/icon32.png",
        "128": "images\/icon512.png"
    },
    "browser_action": {
        "default_title": "Auto Clean",
        "default_icon": {
            "16": "images\/icon16.png",
            "32": "images\/icon32.png",
            "128": "images\/icon512.png"
        }
    }
}