iCloser

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

Qu'est-ce que iCloser ?

iCloser est une extension Chrome développée par HouserDev, et sa fonction principale est "A Google Chrome Extension to automatically close Incognito windows after a period of inactivity.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension iCloser

Téléchargez les fichiers d'extension iCloser au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom iCloser iCloser
ID gimnbijfnecgjlmebbofpdglddeginml
URL Officiel https://chrome.google.com/webstore/detail/icloser/gimnbijfnecgjlmebbofpdglddeginml
Description A Google Chrome Extension to automatically close Incognito windows after a period of inactivity.
Taille du Fichier 41.93 KB
Nombre d'Installations 141
Version Actuelle 1.0.1
Dernière Mise à Jour 2014-02-18
Date de Publication 2014-02-18
Évaluation 3.17/5 Total 6 Évaluations
Développeur HouserDev
Type de Paiement free
Langues Prises en Charge 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"
    }
}