MyCache

MyCache automatically stores saved copies of the pages you visit.

MyCache क्या है?

MyCache Mayank Sindwani द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "MyCache automatically stores saved copies of the pages you visit."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में MyCache एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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 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"
    ]
}