iCloser
A Google Chrome Extension to automatically close Incognito windows after a period of inactivity.
Co je iCloser?
iCloser je rozšíření Chrome vyvinuté HouserDev, a jeho hlavní funkcí je „A Google Chrome Extension to automatically close Incognito windows after a period of inactivity.“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření iCloser
Stáhněte si soubory rozšíření iCloser ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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.
Základní Informace o Rozšíření
Název | |
ID | gimnbijfnecgjlmebbofpdglddeginml |
Oficiální URL | https://chrome.google.com/webstore/detail/icloser/gimnbijfnecgjlmebbofpdglddeginml |
Popis | A Google Chrome Extension to automatically close Incognito windows after a period of inactivity. |
Velikost souboru | 41.93 KB |
Počet instalací | 141 |
Aktuální Verze | 1.0.1 |
Poslední Aktualizace | 2014-02-18 |
Datum Vydání | 2014-02-18 |
Hodnocení | 3.17/5 Celkem 6 Hodnocení |
Vývojář | HouserDev |
Typ Platby | free |
Podporované Jazyky | 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" } } |