Hegarty allow calcuator

A chrome extension to always allow calculator on hegartymaths.

O que é Hegarty allow calcuator?

Hegarty allow calcuator é uma extensão do Chrome desenvolvida por Jacob Marshall, e sua principal característica é "A chrome extension to always allow calculator on hegartymaths.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Hegarty allow calcuator

Baixe arquivos de extensão Hegarty allow calcuator no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

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

Informações Básicas da Extensão

Nome Hegarty allow calcuator Hegarty allow calcuator
ID ompglifjmnnpmfoomlgonhoaehkbbndm
URL Oficial https://chromewebstore.google.com/detail/hegarty-allow-calcuator/ompglifjmnnpmfoomlgonhoaehkbbndm
Descrição A chrome extension to always allow calculator on hegartymaths.
Tamanho do Arquivo 307 KB
Contagem de Instalações 152
Versão Atual 3.0.0
Última Atualização 2022-09-10
Data de Publicação 2021-01-20
Classificação 3.33/5 Total de 6 Avaliações
Desenvolvedor Jacob Marshall
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/jacobhq/allow-calc
URL da Página de Ajuda https://github.com/jacobhq/allow-calc/issues
Idiomas Suportados 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": []
        }
    ]
}