Memrise Monitor
Set learning event goals and see review forecasts
Memrise Monitor là gì?
Memrise Monitor là một tiện ích mở rộng Chrome được phát triển bởi cooljingle, và tính năng chính của nó là "Set learning event goals and see review forecasts".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Memrise Monitor
Tải xuống các tệp mở rộng Memrise Monitor dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Memrise Monitor |
ID | gjiglgfpkbcmanfbjfmhblbbphndhgpc |
URL Chính Thức | https://chromewebstore.google.com/detail/memrise-monitor/gjiglgfpkbcmanfbjfmhblbbphndhgpc |
Mô tả | Set learning event goals and see review forecasts |
Kích Thước Tệp | 288 KB |
Số Lần Cài Đặt | 295 |
Phiên Bản Hiện Tại | 0.0.25 |
Cập Nhật Lần Cuối | 2019-03-05 |
Ngày Phát Hành | 2019-03-05 |
Đánh Giá | 3.29/5 Tổng số 17 Đánh Giá |
Nhà Phát Triển | cooljingle |
Loại Thanh Toán | free |
URL Trang Trợ Giúp | https://community.memrise.com/t/chrome-extension-memrise-monitor/7465 |
Ngôn Ngữ Được Hỗ Trợ | 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\/*" ] } } |