Memrise Monitor

Set learning event goals and see review forecasts

Memrise Monitor란 무엇입니까?

Memrise Monitor은(는) cooljingle에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Set learning event goals and see review forecasts"입니다.

확장 프로그램 스크린샷

screenshot

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

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        This unofficial extension helps you keep track of your progress on Memrise. If offers the following:
 - Set learning event goal, and see how well you've maintained it over the past day, week, month and/or year
 - Forecast views which show when your planted items are next due for review
 - Links to help you get straight into reviewing and learning your courses


If you have issues or suggestions you can leave a message on the forum thread: https://community.memrise.com/t/chrome-extension-memrise-monitor/7465                    

확장 프로그램 기본 정보

이름 Memrise Monitor Memrise Monitor
ID gjiglgfpkbcmanfbjfmhblbbphndhgpc
공식 URL https://chromewebstore.google.com/detail/memrise-monitor/gjiglgfpkbcmanfbjfmhblbbphndhgpc
설명 Set learning event goals and see review forecasts
파일 크기 288 KB
설치 횟수 295
현재 버전 0.0.25
최근 업데이트 2019-03-05
출시 날짜 2019-03-05
평점 3.29/5 총 17 개의 평점
개발자 cooljingle
결제 유형 free
도움말 페이지 URL https://community.memrise.com/t/chrome-extension-memrise-monitor/7465
지원되는 언어 en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Memrise Monitor",
    "description": "Set learning event goals and see review forecasts",
    "version": "0.0.25",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "browser_action": {
        "default_icon": "icons\/icon_day.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "https:\/\/www.memrise.com\/",
        "contextMenus",
        "storage",
        "unlimitedStorage"
    ],
    "background": {
        "scripts": [
            "libraries\/lodash.min.js",
            "libraries\/jquery-2.1.4.min.js",
            "libraries\/moment-with-locales.min.js",
            "libraries\/chrome-Storage-largeSync.min.js",
            "js\/background\/api.js",
            "js\/background\/cache.js",
            "js\/background\/goalOptions.js",
            "js\/background\/contextMenu.js",
            "js\/background\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.memrise.com\/course\/*\/garden\/*",
                "https:\/\/www.memrise.com\/garden\/review\/*"
            ],
            "js": [
                "js\/content-script.js"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        "js\/main-script.js"
    ],
    "externally_connectable": {
        "matches": [
            "https:\/\/www.memrise.com\/course\/*\/garden\/*",
            "https:\/\/www.memrise.com\/garden\/review\/*"
        ]
    }
}