Quizlet++
Extension that modifies Quizlet for more "features".
什么是Quizlet++?
Quizlet++是由https://tigertjj.com开发的Chrome扩展程序,该扩展的主要功能是“Extension that modifies Quizlet for more "features".”。
扩展截图
下载Quizlet++扩展crx文件
下载Quizlet++扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Imagine working on a Quizlet. Now, imagine that it was too easy. Like, really easy. That could be you. Do your work in no time, while at the same time, look like you're doing work, with even the nosiest teachers looking down your shoulder. Get Quizlet++ today. Currently supports: Learn Mode Write Mode Match Mode - Highlights correct answers on hover for multiple choice and match - Types correct answer for written questions
扩展基本信息
名称 | Quizlet++ |
ID | ikpjogookicblaeiilbdjmgbdjkhpjjg |
官方URL | https://chromewebstore.google.com/detail/quizlet++/ikpjogookicblaeiilbdjmgbdjkhpjjg |
简介 | Extension that modifies Quizlet for more "features". |
文件大小 | 55.48 KB |
安装次数 | 4,159 |
当前版本 | Beta Build 7 |
更新时间 | 2023-12-27 |
上架时间 | 2020-09-16 |
评分 | 3.54/5 共13次评分 |
开发者 | https://tigertjj.com |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://tigertjj.com/portfolio/quizletpp/ |
帮助页面URL | https://tigertjj.com/portfolio/quizletpp/ |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Quizlet++", "manifest_version": 3, "description": "Extension that modifies Quizlet for more \"features\".", "icons": { "16": "16x16.png", "48": "48x48.png", "128": "128x128.png" }, "short_name": "Q++", "version": "1.7.0", "version_name": "Beta Build 7", "content_scripts": [ { "matches": [ "https:\/\/quizlet.com\/*\/learn*" ], "js": [ "jquery_3.4.1_slim_min.js", "learn-inject1.js", "combined.js" ] }, { "matches": [ "https:\/\/quizlet.com\/*\/write*" ], "js": [ "jquery_3.4.1_slim_min.js", "write-inject1.js", "write.js" ] }, { "matches": [ "https:\/\/quizlet.com\/*\/match*" ], "js": [ "jquery_3.4.1_slim_min.js", "match-inject1.js", "match.js" ] } ], "web_accessible_resources": [ { "matches": [ "https:\/\/quizlet.com\/*" ], "resources": [ "learn-inject2.js", "write-inject2.js", "match-inject2.js" ] } ] } |