Hegarty allow calcuator
A chrome extension to always allow calculator on hegartymaths.
Hegarty allow calcuator là gì?
Hegarty allow calcuator là một tiện ích mở rộng Chrome được phát triển bởi Jacob Marshall, và tính năng chính của nó là "A chrome extension to always allow calculator on hegartymaths.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Hegarty allow calcuator
Tải xuống các tệp mở rộng Hegarty allow calcuator dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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).
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Hegarty allow calcuator |
ID | ompglifjmnnpmfoomlgonhoaehkbbndm |
URL Chính Thức | https://chromewebstore.google.com/detail/hegarty-allow-calcuator/ompglifjmnnpmfoomlgonhoaehkbbndm |
Mô tả | A chrome extension to always allow calculator on hegartymaths. |
Kích Thước Tệp | 307 KB |
Số Lần Cài Đặt | 152 |
Phiên Bản Hiện Tại | 3.0.0 |
Cập Nhật Lần Cuối | 2022-09-10 |
Ngày Phát Hành | 2021-01-20 |
Đánh Giá | 3.33/5 Tổng số 6 Đánh Giá |
Nhà Phát Triển | Jacob Marshall |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/jacobhq/allow-calc |
URL Trang Trợ Giúp | https://github.com/jacobhq/allow-calc/issues |
Ngôn Ngữ Được Hỗ Trợ | 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": [] } ] } |