MyCache
MyCache automatically stores saved copies of the pages you visit.
MyCache là gì?
MyCache là một tiện ích mở rộng Chrome được phát triển bởi Mayank Sindwani, và tính năng chính của nó là "MyCache automatically stores saved copies of the pages you visit.".
Ả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 MyCache
Tải xuống các tệp mở rộng MyCache 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
MyCache is a Chrome extension for saving copies of the pages you visit automatically or on request for offline viewing. It also provides a user interface for viewing all pages stored in the filesystem. By using MyCache you agree to the terms of use and privacy policy (https://github.com/msindwan/msindwan.github.io/wiki/MyCache-Terms-of-Use-and-Privacy-Policy) MyCache does not send your data to the vendor or any third-party vendors. All files are saved on your desktop. If saving all files by default, please make sure to keep sensitive files saved by MyCache safe and secure.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | MyCache |
ID | cfgbkangadnolaljljeofhegbkjedpmf |
URL Chính Thức | https://chromewebstore.google.com/detail/mycache/cfgbkangadnolaljljeofhegbkjedpmf |
Mô tả | MyCache automatically stores saved copies of the pages you visit. |
Kích Thước Tệp | 5.12 MB |
Số Lần Cài Đặt | 1,013 |
Phiên Bản Hiện Tại | 3.0.0 |
Cập Nhật Lần Cuối | 2024-02-19 |
Ngày Phát Hành | 2019-02-24 |
Đánh Giá | 4.54/5 Tổng số 13 Đánh Giá |
Nhà Phát Triển | Mayank Sindwani |
[email protected] | |
Loại Thanh Toán | free |
URL Trang Chính Sách Bảo Mật | https://github.com/msindwan/msindwan.github.io/wiki/MyCache-Terms-of-Use-and-Privacy-Policy |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "MyCache", "description": "MyCache automatically stores saved copies of the pages you visit.", "version": "3.0.0", "icons": { "16": "images\/mycache_icon_128.png", "48": "images\/mycache_icon_128.png", "128": "images\/mycache_logo_128.png" }, "incognito": "not_allowed", "options_ui": { "page": "html\/options.html" }, "action": { "default_icon": { "16": "images\/mycache_icon_128.png", "48": "images\/mycache_icon_128.png" }, "default_popup": "html\/popup.html" }, "background": { "service_worker": "dist\/background.js", "type": "module" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "dist\/messenger.js" ] } ], "permissions": [ "browsingData", "unlimitedStorage", "webNavigation", "tabs", "storage", "background", "pageCapture", "offscreen" ] } |