Hegarty allow calcuator
A chrome extension to always allow calculator on hegartymaths.
什么是Hegarty allow calcuator?
Hegarty allow calcuator是由Jacob Marshall开发的Chrome扩展程序,该扩展的主要功能是“A chrome extension to always allow calculator on hegartymaths.”。
扩展截图
下载Hegarty allow calcuator扩展crx文件
下载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). 扩展基本信息
| 名称 | |
| 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": []
}
]
} | |