Always Clear Downloads in Chrome
A Google Chrome Extension to always clear the downloads list of all completed downloads.
Always Clear Downloads in Chrome là gì?
Always Clear Downloads in Chrome là một tiện ích mở rộng Chrome được phát triển bởi Tab Manager Plus, và tính năng chính của nó là "A Google Chrome Extension to always clear the downloads list of all completed downloads.".
Ả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 Always Clear Downloads in Chrome
Tải xuống các tệp mở rộng Always Clear Downloads in Chrome 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
An updated version of the popular extension - now compatible with new Chrome versions! This Google Chrome extension makes up for the fact that Chrome does not have an option to keep its download list clear at all times. You can clear the downloads list yourself by hand, but Chrome currently doesn't have an option to automatically clear it for you. This extension does it for you automatically. This extension works in a very simple way: Every few seconds, the downloads list is cleared out for you. Don't worry, the files you downloaded are still there, and in-progress downloads are not harmed. Chrome's internal list simply gets cleaned up for you every five seconds. ==== Please note! ==== There is an unfixed bug in the Google Chrome API which causes this extension to always reset the downloads folder to the default folder. This is a bug in the Chrome API, not a bug in the "Always Clear Downloads in Chrome" extension. For instance, if you configure Chrome's default download folder to "c:\downloads" in Chrome's Advanced Settings, then this extension will keep resetting the folder to be that. If you download a file to a different target location using "Save link as...", and pick a different location such as "c:\other\folder" then instead of that new location being the new default, this extension will cause downloads to go back to "c:\downloads" on the next download. This might not be expected, but it's how the Chrome API works. You might get around this by simply disabling the download shelf instead - instead of clearing the downloads every few seconds. Or increase the clearing interval to an hour, in case you have to download a lot of files to a specific folder. Changes : Version 2.0 -- Support for big clear intervals, like hourly or higher Version 1.9 -- Fixes issue where the download shelf is not disabled after a Chrome restart, unless you re-checked the option manually Version 1.8 -- Fixes initial load with default settings Version 1.7 -- The shelf will clear after active downloads have finished Version 1.6 -- Switched to Chrome's own storage engine Version 1.5 -- Fixes for disabling the shelf Version 1.4 -- Switched to use newer Chrome APIs -- Small fixes Version 1.3 -- Added options page -- You can now set how often the downloads will be cleared -- You can enable/disable the extension in the options -- You can now disable the download shelf
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Always Clear Downloads in Chrome |
ID | efoelbbfbknfhpmgclpcdbkoieedkkai |
URL Chính Thức | https://chromewebstore.google.com/detail/always-clear-downloads-in/efoelbbfbknfhpmgclpcdbkoieedkkai |
Mô tả | A Google Chrome Extension to always clear the downloads list of all completed downloads. |
Kích Thước Tệp | 383 KB |
Số Lần Cài Đặt | 26,264 |
Phiên Bản Hiện Tại | 2.0 |
Cập Nhật Lần Cuối | 2019-11-12 |
Ngày Phát Hành | 2019-11-12 |
Đánh Giá | 4.79/5 Tổng số 181 Đánh Giá |
Nhà Phát Triển | Tab Manager Plus |
[email protected] | |
Loại Thanh Toán | free |
URL Trang Chính Sách Bảo Mật | https://github.com/stefanXO/Tab-Manager-Plus/blob/master/PRIVACY.md |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Always Clear Downloads in Chrome", "short_name": "Always Clear Downloads", "manifest_version": 2, "version": "2.0", "description": "A Google Chrome Extension to always clear the downloads list of all completed downloads.", "icons": { "16": "cloud-computing16.png", "32": "cloud-computing32.png", "64": "cloud-computing64.png", "128": "cloud-computing128.png" }, "browser_action": { "default_icon": { "16": "cloud-computing16.png", "32": "cloud-computing32.png", "64": "cloud-computing64.png", "128": "cloud-computing128.png" }, "default_title": "Always Clear Downloads" }, "permissions": [ "browsingData", "downloads", "downloads.shelf", "storage", "contextMenus" ], "options_page": "options.html", "background": { "scripts": [ "background.js" ] } } |