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 |
| 官方網址 | 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": []
}
]
} | |