doc update

This commit is contained in:
yoannchb-pro
2024-05-05 14:00:17 -04:00
parent dcfe8f3320
commit f5679dd825
5 changed files with 9 additions and 4 deletions
+1
View File
@@ -3,6 +3,7 @@
## v1.1.1 ## v1.1.1
- Bugs correction - Bugs correction
- Support for Atto editor
## v1.1.0 ## v1.1.0
+6 -1
View File
@@ -32,6 +32,7 @@ Find the extension on the Chrome Webstore right [here](https://chrome.google.com
- [True or false](#true-or-false) - [True or false](#true-or-false)
- [Number](#number) - [Number](#number)
- [Text](#text) - [Text](#text)
- [Atto](#atto)
- [What about if the question can't be autocompleted ?](#what-about-if-the-question-cant-be-autocompleted-) - [What about if the question can't be autocompleted ?](#what-about-if-the-question-cant-be-autocompleted-)
- [Test](#test) - [Test](#test)
- [Beta version with advanced features](#beta-version-with-advanced-features) - [Beta version with advanced features](#beta-version-with-advanced-features)
@@ -145,6 +146,10 @@ Person 2 | Yann  | 19/01/2000 | no
![Text](./assets/text.gif) ![Text](./assets/text.gif)
### Atto
![Atto](./assets/atto.gif)
## What about if the question can't be autocompleted ? ## What about if the question can't be autocompleted ?
To know if the answer has been copied to the clipboard, you can look at the title of the page which will become <b>"Copied to clipboard"</b> for 3 seconds if `Title indication` is on. To know if the answer has been copied to the clipboard, you can look at the title of the page which will become <b>"Copied to clipboard"</b> for 3 seconds if `Title indication` is on.
@@ -153,7 +158,7 @@ To know if the answer has been copied to the clipboard, you can look at the titl
## Test ## Test
- <b>Solution 1</b>: Go on [this moodle test page](https://school.moodledemo.net/login/index.php) (username: `student`, password: `moodle`) and choose any quiz. - <b>Solution 1</b>: Go on this [moodle demo page](https://moodle.org/demo).
- <b>Solution 2</b>: Run the `index.html` file located in the `test/fake-moodle` folder. - <b>Solution 2</b>: Run the `index.html` file located in the `test/fake-moodle` folder.
## Beta version with advanced features ## Beta version with advanced features
-2
View File
@@ -1,3 +1 @@
# TODO # TODO
- Fixe contenteditable not filled
BIN
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 39 KiB

+2 -1
View File
@@ -3,7 +3,8 @@
"version": "1.1.1", "version": "1.1.1",
"description": "This extension allows you to hide CHAT-GPT in a Moodle quiz.", "description": "This extension allows you to hide CHAT-GPT in a Moodle quiz.",
"scripts": { "scripts": {
"build": "npm run prettier && npm run lint && rollup -c", "build": "npm run prettier && npm run lint && npm run fastBuild",
"fastBuild": "rollup -c",
"lint": "eslint . --ext .ts", "lint": "eslint . --ext .ts",
"prettier": "prettier --write ." "prettier": "prettier --write ."
}, },