Quizlet Image Adder
Automatically add images to or remove images from all Quizlet cards.
Cos'è Quizlet Image Adder?
Quizlet Image Adder è un'estensione di Chrome sviluppata da Chris Barkachi, e la sua funzione principale è "Automatically add images to or remove images from all Quizlet cards.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Quizlet Image Adder
Scarica i file di estensione Quizlet Image Adder in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
✅ 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.
Informazioni di Base sull'Estensione
Nome | Quizlet Image Adder |
ID | gflmkjgkabemkmdkinacnafbkgbihomp |
URL Ufficiale | https://chromewebstore.google.com/detail/quizlet-image-adder/gflmkjgkabemkmdkinacnafbkgbihomp |
Descrizione | Automatically add images to or remove images from all Quizlet cards. |
Dimensione del File | 16.41 KB |
Conteggio Installazioni | 130 |
Versione Corrente | 1.2 |
Ultimo Aggiornamento | 2020-08-15 |
Data di Pubblicazione | 2020-07-25 |
Valutazione | 4.00/5 Totale 4 Valutazioni |
Sviluppatore | Chris Barkachi |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | 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" ] } |