Auto Shutdown Extension

Small and simple extension for automatic computer shutdown

Co je Auto Shutdown Extension?

Auto Shutdown Extension je rozšíření Chrome vyvinuté auto.shutdown.extension, a jeho hlavní funkcí je „Small and simple extension for automatic computer shutdown“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření Auto Shutdown Extension

Stáhněte si soubory rozšíření Auto Shutdown Extension ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název Auto Shutdown Extension Auto Shutdown Extension
ID heanibacideokneklnfomdlokppmcaam
Oficiální URL https://chromewebstore.google.com/detail/auto-shutdown-extension/heanibacideokneklnfomdlokppmcaam
Popis Small and simple extension for automatic computer shutdown
Velikost souboru 1.48 MB
Počet instalací 5,000
Aktuální Verze 0.1.24
Poslední Aktualizace 2023-11-09
Datum Vydání 2020-06-01
Hodnocení 3.00/5 Celkem 4 Hodnocení
Vývojář auto.shutdown.extension
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/senaa12/shutdown-extension
URL Stránky Nápovědy https://github.com/senaa12/shutdown-extension/blob/master/FAQ.md
Podporované Jazyky 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
}