Book Manager +
Adds various enhancements to the Scholastic Book Manager site.
Co to jest Book Manager +?
Book Manager + to rozszerzenie Chrome opracowane przez madisc, a jego główną funkcją jest „Adds various enhancements to the Scholastic Book Manager site.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Book Manager +
Pobierz pliki rozszerzeń Book Manager + w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
This extension does the following:
- Removes the delete question button from the question tab order
- Disables the enter key from deleting a question
- Adds a confirmation to exit page if page is in the middle of processing
- Adds ability to download the quiz, in csv format, for backup in case of quiz/question loss or error
- Adds ability to show the quiz sorted by page number, with the question number (second column) clickable to enable direct navigation
- Adds a reading skill count which dynamically updates Podstawowe informacje o rozszerzeniu
| Nazwa | |
| ID | cdknonohmnlbiaocedaokbkpjkofcpdc |
| Oficjalny URL | https://chromewebstore.google.com/detail/book-manager-+/cdknonohmnlbiaocedaokbkpjkofcpdc |
| Opis | Adds various enhancements to the Scholastic Book Manager site. |
| Rozmiar pliku | 44.62 KB |
| Liczba instalacji | 43 |
| Aktualna Wersja | 0.4 |
| Ostatnia Aktualizacja | 2018-07-23 |
| Data Publikacji | 2018-07-23 |
| Deweloper | madisc |
| Typ Płatności | free |
| Obsługiwane Języki | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Book Manager +",
"description": "Adds various enhancements to the Scholastic Book Manager site.",
"version": "0.4",
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"content_scripts": [
{
"matches": [
"https:\/\/bookmanager.scholasticlearningzone.com\/pages\/secure\/quiz-draft-view*",
"https:\/\/stage-bookmanager.scholasticlearningzone.com\/pages\/secure\/quiz-draft-view*"
],
"js": [
"jquery-3.1.1.min.js",
"changecontent.js"
]
}
],
"icons": {
"16": "images\/icon16.png",
"48": "images\/icon48.png",
"128": "images\/icon128.png"
},
"page_action": {
"default_icon": {
"16": "images\/icon16.png",
"32": "images\/icon32.png"
},
"default_title": "Book Manager +"
},
"permissions": [
"declarativeContent"
]
} | |