Auto Shutdown Extension

Small and simple extension for automatic computer shutdown

Что такое Auto Shutdown Extension?

Auto Shutdown Extension - это расширение Chrome, разработанное auto.shutdown.extension, и его основная функция - "Small and simple extension for automatic computer shutdown".

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

screenshot
screenshot
screenshot
screenshot

Скачать файл CRX расширения Auto Shutdown Extension

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

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

                        You want to shutdown you computer automatically? This is a Chrome extension for you. Extremely easy to use with available options:

 - Video player: schedule shutdown at specific point in video
 - Timed: shutdown at specific time
 - Countdown: count down time until shutdown 
 - Sport: select sports event after the end of which you want your computer to shut down

NOTE: extension works on Windows or Linux.                    

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

Название Auto Shutdown Extension Auto Shutdown Extension
ID heanibacideokneklnfomdlokppmcaam
Официальный URL https://chromewebstore.google.com/detail/auto-shutdown-extension/heanibacideokneklnfomdlokppmcaam
Описание Small and simple extension for automatic computer shutdown
Размер файла 1.48 MB
Количество установок 5,000
Текущая Версия 0.1.24
Последнее Обновление 2023-11-09
Дата публикации 2020-06-01
Рейтинг 3.00/5 Всего 4 оценок
Разработчик auto.shutdown.extension
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/senaa12/shutdown-extension
URL страницы помощи https://github.com/senaa12/shutdown-extension/blob/master/FAQ.md
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Auto Shutdown Extension",
    "version": "0.1.24",
    "description": "Small and simple extension for automatic computer shutdown",
    "icons": {
        "48": "logo-48.png",
        "128": "logo-128.png"
    },
    "browser_action": {
        "default_popup": "index.html",
        "default_icon": ".\/icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content-script.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "activeTab",
        "nativeMessaging",
        "notifications",
        "webNavigation",
        "storage"
    ],
    "offline_enabled": true
}