Supermind Highlighter

Use our highlighter to easily save cards into Supermind.

Co to jest Supermind Highlighter?

Supermind Highlighter to rozszerzenie Chrome opracowane przez https://superm.in, a jego główną funkcją jest „Use our highlighter to easily save cards into Supermind.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Supermind Highlighter

Pobierz pliki rozszerzeń Supermind Highlighter w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Supermind Highlighter Supermind Highlighter
ID nfmonahomiepbkhocolhebfkokekclco
Oficjalny URL https://chromewebstore.google.com/detail/supermind-highlighter/nfmonahomiepbkhocolhebfkokekclco
Opis Use our highlighter to easily save cards into Supermind.
Rozmiar pliku 22.56 KB
Liczba instalacji 310
Aktualna Wersja 0.7.1
Ostatnia Aktualizacja 2020-06-23
Data Publikacji 2020-06-23
Ocena 5.00/5 Łącznie 2 Oceny
Deweloper https://superm.in
E-mail arh.hoskins@gmail.com
Typ Płatności free
Strona Rozszerzenia https://superm.in/d
Adres URL Strony Pomocy https://superm.in/d
Adres URL Strony Polityki Prywatności https://superm.in/privacy
Obsługiwane Języki 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"
    ]
}