Supermind Highlighter

Use our highlighter to easily save cards into Supermind.

Vad är Supermind Highlighter?

Supermind Highlighter är en Chrome-tillägg utvecklad av https://superm.in, och dess huvudfunktion är "Use our highlighter to easily save cards into Supermind.".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner Supermind Highlighter-förlängningens CRX-fil

Ladda ner Supermind Highlighter-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

                        The Supermind Highlighter gives the ability to create a card from any page. When any text is highlighted, the highlighter will open a popup allowing you to format into a question and answer, and save as a card.                    

Grundläggande Information om Tillägg

Namn Supermind Highlighter Supermind Highlighter
ID nfmonahomiepbkhocolhebfkokekclco
Officiell webbadress https://chromewebstore.google.com/detail/supermind-highlighter/nfmonahomiepbkhocolhebfkokekclco
Beskrivning Use our highlighter to easily save cards into Supermind.
Filstorlek 22.56 KB
Antal Installationer 310
Aktuell Version 0.7.1
Senast Uppdaterad 2020-06-23
Publiceringsdatum 2020-06-23
Betyg 5.00/5 Totalt 2 Betyg
Utvecklare https://superm.in
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://superm.in/d
Hjälpsida URL https://superm.in/d
URL till Sekretesspolicy Sidan https://superm.in/privacy
Stödda Språk en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Supermind Highlighter",
    "version": "0.7.1",
    "description": "Use our highlighter to easily save cards into Supermind.",
    "manifest_version": 2,
    "browser_action": {
        "default_title": "Supermind Highlighter",
        "default_popup": "popup.html"
    },
    "homepage_url": "https:\/\/superm.in\/d",
    "icons": {
        "16": "superm16x16.png",
        "48": "superm48x48.png",
        "128": "superm128x128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "contentScript.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "create.css",
        "swap2.png"
    ],
    "permissions": [
        "contextMenus"
    ]
}