Quizlet Image Adder

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

什么是Quizlet Image Adder?

Quizlet Image Adder是由Chris Barkachi开发的Chrome扩展程序,该扩展的主要功能是“Automatically add images to or remove images from all Quizlet cards.”。

扩展截图

screenshot
screenshot

下载Quizlet Image Adder扩展crx文件

下载Quizlet Image Adder扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        ✅ 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.                    

扩展基本信息

名称 Quizlet Image Adder Quizlet Image Adder
ID gflmkjgkabemkmdkinacnafbkgbihomp
官方URL https://chromewebstore.google.com/detail/quizlet-image-adder/gflmkjgkabemkmdkinacnafbkgbihomp
简介 Automatically add images to or remove images from all Quizlet cards.
文件大小 16.41 KB
安装次数 130
当前版本 1.2
更新时间 2020-08-15
上架时间 2020-07-25
评分 4.00/5 共4次评分
开发者 Chris Barkachi
电子邮箱 [email protected]
付费类型 free
支持的语言 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"
    ]
}