iCloser
A Google Chrome Extension to automatically close Incognito windows after a period of inactivity.
iCloser là gì?
iCloser là một tiện ích mở rộng Chrome được phát triển bởi HouserDev, và tính năng chính của nó là "A Google Chrome Extension to automatically close Incognito windows after a period of inactivity.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng iCloser
Tải xuống các tệp mở rộng iCloser dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | gimnbijfnecgjlmebbofpdglddeginml |
URL Chính Thức | https://chrome.google.com/webstore/detail/icloser/gimnbijfnecgjlmebbofpdglddeginml |
Mô tả | A Google Chrome Extension to automatically close Incognito windows after a period of inactivity. |
Kích Thước Tệp | 41.93 KB |
Số Lần Cài Đặt | 141 |
Phiên Bản Hiện Tại | 1.0.1 |
Cập Nhật Lần Cuối | 2014-02-18 |
Ngày Phát Hành | 2014-02-18 |
Đánh Giá | 3.17/5 Tổng số 6 Đánh Giá |
Nhà Phát Triển | HouserDev |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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" } } |