SpongeWise Flashcard Clipper

Flashcard clipper for any webpage. Add notes and quiz questions. Learn and memorize using spaced repetition to remember everything.

What is SpongeWise Flashcard Clipper?

SpongeWise Flashcard Clipper is a Chrome extension developed by https://www.spongewise.com, and its main feature is "Flashcard clipper for any webpage. Add notes and quiz questions. Learn and memorize using spaced repetition to remember everything.".

Extension Screenshots

screenshot
screenshot
screenshot

Download SpongeWise Flashcard Clipper Extension CRX File

Download SpongeWise Flashcard Clipper extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name SpongeWise Flashcard Clipper SpongeWise Flashcard Clipper
ID paeemhflfemffkcggpldnaofhgmffnlh
Official URL https://chromewebstore.google.com/detail/spongewise-flashcard-clip/paeemhflfemffkcggpldnaofhgmffnlh
Description Flashcard clipper for any webpage. Add notes and quiz questions. Learn and memorize using spaced repetition to remember everything.
File Size 60.28 KB
Installation Count 746
Current Version 5.0.0
Last Updated 2018-10-16
Publish Date 2018-10-15
Rating 3.00/5 Total 2 Ratings
Developer https://www.spongewise.com
Email [email protected]
Payment Type free
Extension Website https://www.spongewise.com
Supported Languages 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"
    ]
}