Hegarty allow calcuator
A chrome extension to always allow calculator on hegartymaths.
Hegarty allow calcuatorคืออะไร?
Hegarty allow calcuator เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Jacob Marshall และคุณลักษณะหลักของมันคือ "A chrome extension to always allow calculator on hegartymaths."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Hegarty allow calcuator
ดาวน์โหลดไฟล์ส่วนขยาย Hegarty allow calcuator ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This is a package that changes the 'Do not use a calculator' to 'You may use a calculator' on hegartymaths. You probably shouldn't use it at school or you may get in trouble. ;) I made in my free time, and, when it gets you out of doing hegarty, please consider buying me a coffee (buymeacoffe.com/jem).
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Hegarty allow calcuator |
ID | ompglifjmnnpmfoomlgonhoaehkbbndm |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/hegarty-allow-calcuator/ompglifjmnnpmfoomlgonhoaehkbbndm |
คำอธิบาย | A chrome extension to always allow calculator on hegartymaths. |
ขนาดไฟล์ | 307 KB |
จำนวนการติดตั้ง | 152 |
เวอร์ชันปัจจุบัน | 3.0.0 |
อัปเดตครั้งล่าสุด | 2022-09-10 |
วันที่เผยแพร่ | 2021-01-20 |
คะแนน | 3.33/5 รวมทั้งหมด 6 คะแนน |
ผู้พัฒนา | Jacob Marshall |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/jacobhq/allow-calc |
URL หน้าช่วยเหลือ | https://github.com/jacobhq/allow-calc/issues |
ภาษาที่รองรับ | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "description": "A chrome extension to always allow calculator on hegartymaths.", "version": "3.0.0", "manifest_version": 3, "name": "Hegarty allow calcuator", "options_page": "options.html", "background": { "service_worker": "background.bundle.js" }, "action": { "default_popup": "popup.html", "default_icon": "icon-48.png" }, "icons": { "16": "icon-16.png", "48": "icon-48.png", "128": "icon-128.png" }, "permissions": [ "tabs", "storage", "activeTab", "https:\/\/hegartymaths.com\/assessment" ], "content_scripts": [ { "matches": [ "*:\/\/hegartymaths.com\/assessment" ], "js": [ "contentScript.bundle.js" ], "css": [ "content.styles.css" ] } ], "web_accessible_resources": [ { "resources": [ "content.styles.css", "icon-128.png", "icon-48.png", "icon-16.png", "press-icon.png", "hegarty-logo.jpg" ], "matches": [] } ] } |