Quizlet Rocks
A chrome extension that highlights the correct answers, pairs matches, and autofills input fields
¿Qué es Quizlet Rocks?
Quizlet Rocks es una extensión de Chrome desarrollada por https://quizlet.rocks, y su función principal es "A chrome extension that highlights the correct answers, pairs matches, and autofills input fields".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Quizlet Rocks
Descarga archivos de extensión Quizlet Rocks en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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.
Información Básica de la Extensión
Nombre | Quizlet Rocks |
ID | pgbnfimhfgoibnimmfoeacjehkecgkmk |
URL Oficial | https://chromewebstore.google.com/detail/quizlet-rocks/pgbnfimhfgoibnimmfoeacjehkecgkmk |
Descripción | A chrome extension that highlights the correct answers, pairs matches, and autofills input fields |
Tamaño del Archivo | 13.33 KB |
Cantidad de Instalaciones | 10,863 |
Versión Actual | 1.0.1 |
Última Actualización | 2021-02-27 |
Fecha de Publicación | 2021-02-19 |
Calificación | 3.50/5 Total de 16 Calificaciones |
Desarrollador | https://quizlet.rocks |
Correo electrónico | [email protected] |
Tipo de Pago | free |
URL de la Página de Ayuda | https://rocks.network/discord |
Idiomas Soportados | 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" } } |