Hegarty allow calcuator
A chrome extension to always allow calculator on hegartymaths.
Что такое Hegarty allow calcuator?
Hegarty allow calcuator - это расширение Chrome, разработанное Jacob Marshall, и его основная функция - "A chrome extension to always allow calculator on hegartymaths.".
Снимки экрана расширения
Скачать файл CRX расширения Hegarty allow calcuator
Скачайте файлы расширений 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 |
| Официальный 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": []
}
]
} | |