MyCache
MyCache automatically stores saved copies of the pages you visit.
什么是MyCache?
MyCache是由Mayank Sindwani开发的Chrome扩展程序,该扩展的主要功能是“MyCache automatically stores saved copies of the pages you visit.”。
扩展截图
下载MyCache扩展crx文件
下载MyCache扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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. 扩展基本信息
| 名称 | |
| ID | cfgbkangadnolaljljeofhegbkjedpmf |
| 官方URL | https://chromewebstore.google.com/detail/mycache/cfgbkangadnolaljljeofhegbkjedpmf |
| 简介 | MyCache automatically stores saved copies of the pages you visit. |
| 文件大小 | 5.12 MB |
| 安装次数 | 1,013 |
| 当前版本 | 3.0.0 |
| 更新时间 | 2024-02-19 |
| 上架时间 | 2019-02-24 |
| 评分 | 4.54/5 共13次评分 |
| 开发者 | Mayank Sindwani |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 隐私政策页面URL | https://github.com/msindwan/msindwan.github.io/wiki/MyCache-Terms-of-Use-and-Privacy-Policy |
| 支持的语言 | 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"
]
} | |