Memrise Monitor
Set learning event goals and see review forecasts
Memrise Monitor क्या है?
Memrise Monitor cooljingle द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Set learning event goals and see review forecasts"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Memrise Monitor एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 |
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\/*" ] } } |