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
官方網址 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"
    ]
}