iCloser
A Google Chrome Extension to automatically close Incognito windows after a period of inactivity.
iCloser क्या है?
iCloser HouserDev द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A Google Chrome Extension to automatically close Incognito windows after a period of inactivity."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में iCloser एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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.
एक्सटेंशन की मूल जानकारी
नाम | |
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" } } |