MyCache
MyCache automatically stores saved copies of the pages you visit.
Τι είναι το MyCache;
Το MyCache είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Mayank Sindwani, και η κύρια λειτουργία του είναι "MyCache automatically stores saved copies of the pages you visit.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης MyCache
Λήψη αρχείων επέκτασης 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.
Βασικές Πληροφορίες Επέκτασης
Όνομα | MyCache |
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" ] } |