Notify by Script

Extension for setting notifications that prepared by scripts.

Что такое Notify by Script?

Notify by Script - это расширение Chrome, разработанное expercise Labs, и его основная функция - "Extension for setting notifications that prepared by scripts.".

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

screenshot
screenshot

Скачать файл CRX расширения Notify by Script

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

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

                        Notify by Script is here to allow you setting alarms with custom scripted notifications.

For example information, visit https://github.com/ufuk/notify-by-script#notify-by-script                    

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

Название Notify by Script Notify by Script
ID idgiodaooapkmmipoahlcmggofokcilg
Официальный URL https://chromewebstore.google.com/detail/notify-by-script/idgiodaooapkmmipoahlcmggofokcilg
Описание Extension for setting notifications that prepared by scripts.
Размер файла 54.84 KB
Количество установок 32
Текущая Версия 1.0.5
Последнее Обновление 2022-02-21
Дата публикации 2017-01-17
Рейтинг 5.00/5 Всего 6 оценок
Разработчик expercise Labs
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения http://expercise.com
URL страницы помощи https://github.com/ufuk/notify-by-script
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Notify by Script",
    "description": "Extension for setting notifications that prepared by scripts.",
    "version": "1.0.5",
    "author": "Ufuk Uzun",
    "icons": {
        "128": "icon-128.png",
        "256": "icon.png"
    },
    "browser_action": {
        "default_icon": "icon.png"
    },
    "background": {
        "persistent": true,
        "scripts": [
            "main.js",
            "jquery.min.js"
        ]
    },
    "permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "alarms",
        "notifications",
        "storage"
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    }
}