HMIS Manager

This is for HMIS operator, It take data from excel and fill on website

Что такое HMIS Manager?

HMIS Manager - это расширение Chrome, разработанное talibs9898, и его основная функция - "This is for HMIS operator, It take data from excel and fill on website".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения HMIS Manager

Скачайте файлы расширений HMIS Manager в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        Auto filling form of HMIS website, it take data from excel sheet and put into RCH website for, it makes easy to submit form

Application supports the following browsers: Chrome (latest)

TERMS OF SERVICE

1. HMIS Manager Filler is not official India government 
         software, app and extension.
2. If you use this extension, then it will be your responsibility that 
          how you are using this extension.
3. The main purpose of this extension is to make Data Entry easy, 
          but if you use this extension to upload data unofficially, then it 
          will be your responsibility. HMIS Manager will not have any 
          responsibility in this.                    

Основная информация о расширении

Название HMIS Manager HMIS Manager
ID nokokcfhoinmidmbnjhgmgljhgelfgif
Официальный URL https://chromewebstore.google.com/detail/hmis-manager/nokokcfhoinmidmbnjhgmgljhgelfgif
Описание This is for HMIS operator, It take data from excel and fill on website
Размер файла 724 KB
Количество установок 13
Текущая Версия 1.0.5
Последнее Обновление 2023-10-26
Дата публикации 2023-07-03
Разработчик talibs9898
Электронная почта [email protected]
Тип оплаты free
URL страницы политики конфиденциальности https://www.freeprivacypolicy.com/live/272b64f1-bc92-487f-b79a-21f20ab001fd
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "HMIS Manager",
    "description": "This is for HMIS operator, It take data from excel and fill on website ",
    "manifest_version": 3,
    "version": "1.0.5",
    "icons": {
        "16": "images\/16.png",
        "48": "images\/48.png",
        "128": "images\/128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/hmis.mohfw.gov.in\/*"
            ],
            "run_at": "document_start",
            "js": [
                "xlsx.js",
                "xlsxEport.js",
                "content.js"
            ]
        }
    ],
    "action": {
        "default_popup": "popup.html"
    },
    "options_ui": {
        "page": "payment.html",
        "open_in_tab": true
    },
    "background": {
        "service_worker": "worker.js"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "bar.html",
                "options.html",
                "firebase\/firebase-app.js",
                "firebase\/firebase-auth.js",
                "firebase\/firebase-database.js"
            ],
            "matches": [
                "https:\/\/hmis.mohfw.gov.in\/*"
            ]
        }
    ],
    "host_permissions": [
        ""
    ],
    "permissions": [
        "unlimitedStorage",
        "identity",
        "storage",
        "identity.email"
    ]
}