MyCache
MyCache automatically stores saved copies of the pages you visit.
O que é MyCache?
MyCache é uma extensão do Chrome desenvolvida por Mayank Sindwani, e sua principal característica é "MyCache automatically stores saved copies of the pages you visit.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão MyCache
Baixe arquivos de extensão MyCache no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | MyCache |
ID | cfgbkangadnolaljljeofhegbkjedpmf |
URL Oficial | https://chromewebstore.google.com/detail/mycache/cfgbkangadnolaljljeofhegbkjedpmf |
Descrição | MyCache automatically stores saved copies of the pages you visit. |
Tamanho do Arquivo | 5.12 MB |
Contagem de Instalações | 1,013 |
Versão Atual | 3.0.0 |
Última Atualização | 2024-02-19 |
Data de Publicação | 2019-02-24 |
Classificação | 4.54/5 Total de 13 Avaliações |
Desenvolvedor | Mayank Sindwani |
[email protected] | |
Tipo de Pagamento | free |
URL da Página de Política de Privacidade | https://github.com/msindwan/msindwan.github.io/wiki/MyCache-Terms-of-Use-and-Privacy-Policy |
Idiomas Suportados | 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" ] } |