Book Manager +
Adds various enhancements to the Scholastic Book Manager site.
Book Manager +คืออะไร?
Book Manager + เป็นส่วนขยายของ Chrome ที่พัฒนาโดย madisc และคุณลักษณะหลักของมันคือ "Adds various enhancements to the Scholastic Book Manager site."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Book Manager +
ดาวน์โหลดไฟล์ส่วนขยาย Book Manager + ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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 ข้อมูลพื้นฐานของส่วนขยาย
| ชื่อ | |
| ID | cdknonohmnlbiaocedaokbkpjkofcpdc |
| URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/book-manager-+/cdknonohmnlbiaocedaokbkpjkofcpdc |
| คำอธิบาย | Adds various enhancements to the Scholastic Book Manager site. |
| ขนาดไฟล์ | 44.62 KB |
| จำนวนการติดตั้ง | 43 |
| เวอร์ชันปัจจุบัน | 0.4 |
| อัปเดตครั้งล่าสุด | 2018-07-23 |
| วันที่เผยแพร่ | 2018-07-23 |
| ผู้พัฒนา | madisc |
| ประเภทการชำระเงิน | free |
| ภาษาที่รองรับ | 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"
]
} | |