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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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" } } |