Hegarty allow calcuator

A chrome extension to always allow calculator on hegartymaths.

Qu'est-ce que Hegarty allow calcuator ?

Hegarty allow calcuator est une extension Chrome développée par Jacob Marshall, et sa fonction principale est "A chrome extension to always allow calculator on hegartymaths.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Hegarty allow calcuator

Téléchargez les fichiers d'extension Hegarty allow calcuator au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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).                    

Informations de Base sur l'Extension

Nom Hegarty allow calcuator Hegarty allow calcuator
ID ompglifjmnnpmfoomlgonhoaehkbbndm
URL Officiel https://chromewebstore.google.com/detail/hegarty-allow-calcuator/ompglifjmnnpmfoomlgonhoaehkbbndm
Description A chrome extension to always allow calculator on hegartymaths.
Taille du Fichier 307 KB
Nombre d'Installations 152
Version Actuelle 3.0.0
Dernière Mise à Jour 2022-09-10
Date de Publication 2021-01-20
Évaluation 3.33/5 Total 6 Évaluations
Développeur Jacob Marshall
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/jacobhq/allow-calc
URL de la Page d'Aide https://github.com/jacobhq/allow-calc/issues
Langues Prises en Charge 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": []
        }
    ]
}