iCloser

A Google Chrome Extension to automatically close Incognito windows after a period of inactivity.

iCloserคืออะไร?

iCloser เป็นส่วนขยายของ Chrome ที่พัฒนาโดย HouserDev และคุณลักษณะหลักของมันคือ "A Google Chrome Extension to automatically close Incognito windows after a period of inactivity."

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

screenshot

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

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

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

                        In case you use Incognito windows at work (or home) and forget to close them, this extension will keep your co-workers from happening upon your private windows by automatically closing them for you after a period of inactivity. Choose any number of minutes from 1 to 5 hours and then rest assured that your window will quietly be closed for you if you forget.

NOTE:
You must enable the extension to work in Incognito mode in order for this to do the job it is intended to do.                    

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

ชื่อ iCloser iCloser
ID gimnbijfnecgjlmebbofpdglddeginml
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/icloser/gimnbijfnecgjlmebbofpdglddeginml
คำอธิบาย A Google Chrome Extension to automatically close Incognito windows after a period of inactivity.
ขนาดไฟล์ 41.93 KB
จำนวนการติดตั้ง 141
เวอร์ชันปัจจุบัน 1.0.1
อัปเดตครั้งล่าสุด 2014-02-18
วันที่เผยแพร่ 2014-02-18
คะแนน 3.17/5 รวมทั้งหมด 6 คะแนน
ผู้พัฒนา HouserDev
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "iCloser",
    "description": "A Google Chrome Extension to automatically close Incognito windows after a period of inactivity.",
    "version": "1.0.1",
    "background": {
        "scripts": [
            "icloser.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "icloserDOM.js"
            ],
            "run_at": "document_end"
        }
    ],
    "options_page": "icloserOptions.html",
    "permissions": [
        "tabs",
        "background"
    ],
    "icons": {
        "16": "icloser_16.png",
        "48": "icloser_48.png",
        "128": "icloser_128.png"
    }
}