SpongeWise Flashcard Clipper

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

Was ist SpongeWise Flashcard Clipper?

SpongeWise Flashcard Clipper ist eine Chrome-Erweiterung, die von https://www.spongewise.com entwickelt wurde, und ihr Hauptmerkmal ist "Flashcard clipper for any webpage. Add notes and quiz questions. Learn and memorize using spaced repetition to remember everything.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

SpongeWise Flashcard Clipper-Erweiterungs-CRX-Datei herunterladen

Laden Sie SpongeWise Flashcard Clipper-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name SpongeWise Flashcard Clipper SpongeWise Flashcard Clipper
ID paeemhflfemffkcggpldnaofhgmffnlh
Offizielle URL https://chromewebstore.google.com/detail/spongewise-flashcard-clip/paeemhflfemffkcggpldnaofhgmffnlh
Beschreibung Flashcard clipper for any webpage. Add notes and quiz questions. Learn and memorize using spaced repetition to remember everything.
Dateigröße 60.28 KB
Installationsanzahl 746
Aktuelle Version 5.0.0
Letztes Update 2018-10-16
Veröffentlichungsdatum 2018-10-15
Bewertung 3.00/5 Insgesamt 2 Bewertungen
Entwickler https://www.spongewise.com
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://www.spongewise.com
Unterstützte Sprachen 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"
    ]
}