Hegarty allow calcuator
A chrome extension to always allow calculator on hegartymaths.
Cos'è Hegarty allow calcuator?
Hegarty allow calcuator è un'estensione di Chrome sviluppata da Jacob Marshall, e la sua funzione principale è "A chrome extension to always allow calculator on hegartymaths.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Hegarty allow calcuator
Scarica i file di estensione Hegarty allow calcuator in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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). Informazioni di Base sull'Estensione
| Nome | |
| ID | ompglifjmnnpmfoomlgonhoaehkbbndm |
| URL Ufficiale | https://chromewebstore.google.com/detail/hegarty-allow-calcuator/ompglifjmnnpmfoomlgonhoaehkbbndm |
| Descrizione | A chrome extension to always allow calculator on hegartymaths. |
| Dimensione del File | 307 KB |
| Conteggio Installazioni | 152 |
| Versione Corrente | 3.0.0 |
| Ultimo Aggiornamento | 2022-09-10 |
| Data di Pubblicazione | 2021-01-20 |
| Valutazione | 3.33/5 Totale 6 Valutazioni |
| Sviluppatore | Jacob Marshall |
| [email protected] | |
| Tipo di Pagamento | free |
| Sito Web dell'Estensione | https://github.com/jacobhq/allow-calc |
| URL della Pagina di Aiuto | https://github.com/jacobhq/allow-calc/issues |
| Lingue Supportate | 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": []
}
]
} | |