Hegarty allow calcuator

A chrome extension to always allow calculator on hegartymaths.

Hegarty allow calcuator क्या है?

Hegarty allow calcuator Jacob Marshall द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A chrome extension to always allow calculator on hegartymaths."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Hegarty allow calcuator एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

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

एक्सटेंशन की मूल जानकारी

नाम Hegarty allow calcuator Hegarty allow calcuator
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": []
        }
    ]
}