SpongeWise Flashcard Clipper

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

Vad är SpongeWise Flashcard Clipper?

SpongeWise Flashcard Clipper är en Chrome-tillägg utvecklad av https://www.spongewise.com, och dess huvudfunktion är "Flashcard clipper for any webpage. Add notes and quiz questions. Learn and memorize using spaced repetition to remember everything.".

Tilläggsskärmbilder

screenshot
screenshot
screenshot

Ladda ner SpongeWise Flashcard Clipper-förlängningens CRX-fil

Ladda ner SpongeWise Flashcard Clipper-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn SpongeWise Flashcard Clipper SpongeWise Flashcard Clipper
ID paeemhflfemffkcggpldnaofhgmffnlh
Officiell webbadress https://chromewebstore.google.com/detail/spongewise-flashcard-clip/paeemhflfemffkcggpldnaofhgmffnlh
Beskrivning Flashcard clipper for any webpage. Add notes and quiz questions. Learn and memorize using spaced repetition to remember everything.
Filstorlek 60.28 KB
Antal Installationer 746
Aktuell Version 5.0.0
Senast Uppdaterad 2018-10-16
Publiceringsdatum 2018-10-15
Betyg 3.00/5 Totalt 2 Betyg
Utvecklare https://www.spongewise.com
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://www.spongewise.com
Stödda Språk 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"
    ]
}