iCloser

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

什麼是iCloser?

iCloser是由HouserDev開發的Chrome擴展程式,該擴展的主要功能是“A Google Chrome Extension to automatically close Incognito windows after a period of inactivity.”。

擴展截圖

screenshot

下載iCloser擴展crx文件

下載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
官方網址 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"
    }
}