Auto Shutdown Extension

Small and simple extension for automatic computer shutdown

Was ist Auto Shutdown Extension?

Auto Shutdown Extension ist eine Chrome-Erweiterung, die von auto.shutdown.extension entwickelt wurde, und ihr Hauptmerkmal ist "Small and simple extension for automatic computer shutdown".

Erweiterungsscreenshots

screenshot
screenshot
screenshot
screenshot

Auto Shutdown Extension-Erweiterungs-CRX-Datei herunterladen

Laden Sie Auto Shutdown Extension-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Auto Shutdown Extension Auto Shutdown Extension
ID heanibacideokneklnfomdlokppmcaam
Offizielle URL https://chromewebstore.google.com/detail/auto-shutdown-extension/heanibacideokneklnfomdlokppmcaam
Beschreibung Small and simple extension for automatic computer shutdown
Dateigröße 1.48 MB
Installationsanzahl 5,000
Aktuelle Version 0.1.24
Letztes Update 2023-11-09
Veröffentlichungsdatum 2020-06-01
Bewertung 3.00/5 Insgesamt 4 Bewertungen
Entwickler auto.shutdown.extension
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/senaa12/shutdown-extension
Hilfeseite URL https://github.com/senaa12/shutdown-extension/blob/master/FAQ.md
Unterstützte Sprachen 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
}