DMV Appointement Checker

Monitor latest appointment availabilities for the Californian Department of Motor Vehicle

Что такое DMV Appointement Checker?

DMV Appointement Checker - это расширение Chrome, разработанное https://tonoid.com, и его основная функция - "Monitor latest appointment availabilities for the Californian Department of Motor Vehicle".

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

screenshot
screenshot
screenshot

Скачать файл CRX расширения DMV Appointement Checker

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

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

                        Monitor latest appointment availabilities for the Californian Department of Motor Vehicle                    

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

Название DMV Appointement Checker DMV Appointement Checker
ID pilicigppihnlfgeifeoaehaamhdknji
Официальный URL https://chromewebstore.google.com/detail/dmv-appointement-checker/pilicigppihnlfgeifeoaehaamhdknji
Описание Monitor latest appointment availabilities for the Californian Department of Motor Vehicle
Размер файла 82.51 KB
Количество установок 170
Текущая Версия 1.3
Последнее Обновление 2020-03-06
Дата публикации 2020-03-04
Рейтинг 4.00/5 Всего 1 оценок
Разработчик https://tonoid.com
Тип оплаты free
Официальный сайт расширения https://www.tonoid.com
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "DMV Appointement Checker",
    "short_name": "dmv-appointement-checker",
    "description": "Monitor latest appointment availabilities for the Californian Department of Motor Vehicle",
    "version": "1.3",
    "author": "Simo Elalj ",
    "options_page": "options.html",
    "icons": {
        "16": "16.png",
        "48": "48.png",
        "128": "128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.dmv.ca.gov\/wasapp\/foa\/*"
            ],
            "js": [
                "content-script.js"
            ],
            "run_at": "document_end"
        }
    ],
    "content_security_policy": "script-src 'self' https:\/\/www.google-analytics.com; object-src 'self'",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "storage",
        "tabs"
    ]
}