Quizlet Image Adder

Automatically add images to or remove images from all Quizlet cards.

Co to jest Quizlet Image Adder?

Quizlet Image Adder to rozszerzenie Chrome opracowane przez Chris Barkachi, a jego główną funkcją jest „Automatically add images to or remove images from all Quizlet cards.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Quizlet Image Adder

Pobierz pliki rozszerzeń Quizlet Image Adder 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

                        ✅ A handy Quizlet add-on that will save you the manual effort of adding an image to each card. The extension won't change images for cards you've already set.

✅ Doesn't require Quizlet Plus (recommended image search is built into Quizlet but you must manually add an image to each card in your set).

🔃 Make sure to refresh after installing.

🖱 To use the extension, navigate to the "Edit" page of your set. Sit back, relax, and watch as your cards come to life.                    

Podstawowe informacje o rozszerzeniu

Nazwa Quizlet Image Adder Quizlet Image Adder
ID gflmkjgkabemkmdkinacnafbkgbihomp
Oficjalny URL https://chromewebstore.google.com/detail/quizlet-image-adder/gflmkjgkabemkmdkinacnafbkgbihomp
Opis Automatically add images to or remove images from all Quizlet cards.
Rozmiar pliku 16.41 KB
Liczba instalacji 130
Aktualna Wersja 1.2
Ostatnia Aktualizacja 2020-08-15
Data Publikacji 2020-07-25
Ocena 4.00/5 Łącznie 4 Oceny
Deweloper Chris Barkachi
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Quizlet Image Adder",
    "version": "1.2",
    "description": "Automatically add images to or remove images from all Quizlet cards.",
    "manifest_version": 2,
    "icons": {
        "128": "abc.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/quizlet.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": "abc.png"
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "permissions": [
        "activeTab",
        "storage"
    ]
}