SpongeWise Flashcard Clipper
Flashcard clipper for any webpage. Add notes and quiz questions. Learn and memorize using spaced repetition to remember everything.
Что такое SpongeWise Flashcard Clipper?
SpongeWise Flashcard Clipper - это расширение Chrome, разработанное https://www.spongewise.com, и его основная функция - "Flashcard clipper for any webpage. Add notes and quiz questions. Learn and memorize using spaced repetition to remember everything.".
Снимки экрана расширения
Скачать файл CRX расширения SpongeWise Flashcard Clipper
Скачайте файлы расширений SpongeWise Flashcard Clipper в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Learn Anything. Clip Wikipedia articles, news stories, tutorials, or any other web page as a flashcard. Add notes and quiz questions and save it to your learning history. Remember Everything. When items become ready for review using spaced repetition, go to "My Sponge" on SpongeWise.com in order to review your flashcards notes and quiz questions.
Основная информация о расширении
Название | SpongeWise Flashcard Clipper |
ID | paeemhflfemffkcggpldnaofhgmffnlh |
Официальный URL | https://chromewebstore.google.com/detail/spongewise-flashcard-clip/paeemhflfemffkcggpldnaofhgmffnlh |
Описание | Flashcard clipper for any webpage. Add notes and quiz questions. Learn and memorize using spaced repetition to remember everything. |
Размер файла | 60.28 KB |
Количество установок | 746 |
Текущая Версия | 5.0.0 |
Последнее Обновление | 2018-10-16 |
Дата публикации | 2018-10-15 |
Рейтинг | 3.00/5 Всего 2 оценок |
Разработчик | https://www.spongewise.com |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://www.spongewise.com |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "SpongeWise Flashcard Clipper", "short_name": "SpongeWise", "description": "Flashcard clipper for any webpage. Add notes and quiz questions. Learn and memorize using spaced repetition to remember everything.", "version": "5.0.0", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "browser_action": { "default_icon": "icon48.png", "default_title": "SpongeWise" }, "permissions": [ "activeTab", "contextMenus", "storage" ], "background": { "scripts": [ "scripts\/parse.min.js", "background.js" ], "persistent": true }, "content_scripts": [ { "matches": [ "https:\/\/www.spongewise.com\/*", "https:\/\/localhost:3443\/*" ], "js": [ "content.js" ], "all_frames": true } ], "web_accessible_resources": [ "production.html", "localhost.html" ] } |