Quizlet Automator
This extension automatically completes Quizlet's 'Write Mode', 'Learn Mode', and 'Test Mode'
什麼是Quizlet Automator?
Quizlet Automator是由williamspencerdev開發的Chrome擴展程式,該擴展的主要功能是“This extension automatically completes Quizlet's 'Write Mode', 'Learn Mode', and 'Test Mode'”。
下載Quizlet Automator擴展crx文件
下載Quizlet Automator擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
This extension automates Quizlet's 'Write Mode', 'Learn Mode', and 'Test Mode', providing a simple, minimalistic design interface. When on a 'Write Mode' or 'Learn Mode' web page, simply click the icon in the extensions bar and press the minimalistic, well-labeled button. Should the extension not work the first time, simply reload the page and complete the same process again. Happy Not-Quizletting!
Version Notes:
0.3.1: Bugfixes
0.3.0: Introduced support for Test Mode automation!
0.2.1: Fixed description
0.2.0: Introduced support for Learn Mode automation!
0.1.3: Minor bugfix / restructuring
0.1.2: Fixed further initial bugs
0.1.1: Fixed initial bugs
0.1.0: Initial Release 擴展基本資訊
| 名稱 | |
| ID | mkpliafdkeackpndnjgeaiopggidjinp |
| 官方網址 | https://chrome.google.com/webstore/detail/quizlet-automator/mkpliafdkeackpndnjgeaiopggidjinp |
| 簡介 | This extension automatically completes Quizlet's 'Write Mode', 'Learn Mode', and 'Test Mode' |
| 檔案大小 | 37.24 KB |
| 安裝次數 | 803 |
| 目前版本 | 0.3.1 |
| 更新時間 | 2018-05-30 |
| 上架時間 | 2018-05-30 |
| 評分 | 3.10/5 共 10 次評分 |
| 開發者 | williamspencerdev |
| 付費類型 | free |
| 支援的語言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Quizlet Automator",
"description": "This extension automatically completes Quizlet's 'Write Mode', 'Learn Mode', and 'Test Mode'",
"version": "0.3.1",
"browser_action": {
"default_icon": "icon.png",
"default_popup": "popup.html",
"default_title": "QA Options"
},
"permissions": [
"storage",
"tabs"
],
"content_scripts": [
{
"matches": [
"https:\/\/quizlet.com\/*"
],
"js": [
"jquery-3.1.1.min.js",
"script.js"
]
}
]
} | |