Quizlet Image Adder
Automatically add images to or remove images from all Quizlet cards.
What is Quizlet Image Adder?
Quizlet Image Adder is a Chrome extension developed by Chris Barkachi, and its main feature is "Automatically add images to or remove images from all Quizlet cards.".
Extension Screenshots
Download Quizlet Image Adder Extension CRX File
Download Quizlet Image Adder extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
✅ 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.
Extension Basic Information
Name | Quizlet Image Adder |
ID | gflmkjgkabemkmdkinacnafbkgbihomp |
Official URL | https://chromewebstore.google.com/detail/quizlet-image-adder/gflmkjgkabemkmdkinacnafbkgbihomp |
Description | Automatically add images to or remove images from all Quizlet cards. |
File Size | 16.41 KB |
Installation Count | 130 |
Current Version | 1.2 |
Last Updated | 2020-08-15 |
Publish Date | 2020-07-25 |
Rating | 4.00/5 Total 4 Ratings |
Developer | Chris Barkachi |
[email protected] | |
Payment Type | free |
Supported Languages | 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" ] } |