Quizlet Rocks
A chrome extension that highlights the correct answers, pairs matches, and autofills input fields
什么是Quizlet Rocks?
Quizlet Rocks是由https://quizlet.rocks开发的Chrome扩展程序,该扩展的主要功能是“A chrome extension that highlights the correct answers, pairs matches, and autofills input fields”。
扩展截图
下载Quizlet Rocks扩展crx文件
下载Quizlet Rocks扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Rocks Network presents: The official Quizlet Rocks answer tool, Just have this chrome extension installed and it will highlight the correct answer when you are in a quizlet game. it works for any type of Quizlet game, whether that be a Quiz/Homework/Test. Easy to use UI with all of the correct answers clearly highlighted in a way that makes sense. If any problems were to arise you can contact our very active support team at https://rocks.network/discord. Similar cheat also accessible via game pin at https://quizlet.rocks/. Quizlet is an American online study application that allows students to study various topics via learning tools and games. It was founded by Andrew Sutherland in October 2005 and released to the public in January 2007. Quizlet trains students via flashcards and various games and tests.
扩展基本信息
名称 | Quizlet Rocks |
ID | pgbnfimhfgoibnimmfoeacjehkecgkmk |
官方URL | https://chromewebstore.google.com/detail/quizlet-rocks/pgbnfimhfgoibnimmfoeacjehkecgkmk |
简介 | A chrome extension that highlights the correct answers, pairs matches, and autofills input fields |
文件大小 | 13.33 KB |
安装次数 | 10,863 |
当前版本 | 1.0.1 |
更新时间 | 2021-02-27 |
上架时间 | 2021-02-19 |
评分 | 3.50/5 共16次评分 |
开发者 | https://quizlet.rocks |
电子邮箱 | [email protected] |
付费类型 | free |
帮助页面URL | https://rocks.network/discord |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Quizlet Rocks", "version": "1.0.1", "manifest_version": 2, "description": "A chrome extension that highlights the correct answers, pairs matches, and autofills input fields", "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/quizlet.com\/live\/*" ], "run_at": "document_end", "js": [ "live.js" ] }, { "matches": [ "https:\/\/quizlet.com\/*\/gravity" ], "run_at": "document_end", "js": [ "gravity.js" ] }, { "matches": [ "https:\/\/quizlet.com\/*\/match" ], "run_at": "document_end", "js": [ "match.js" ] } ], "permissions": [ "https:\/\/quizlet.com\/webapi\/3.2\/game-instances*", "webRequest" ], "icons": { "16": "images\/16.png", "48": "images\/48.png", "128": "images\/128.png" } } |