Quizlet++
Extension that modifies Quizlet for more "features".
Quizlet++란 무엇입니까?
Quizlet++은(는) https://tigertjj.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Extension that modifies Quizlet for more "features"."입니다.
확장 프로그램 스크린샷
Quizlet++ 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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" ] } ] } |