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."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

MyCache 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
    ]
}