Auto Shutdown Extension

Small and simple extension for automatic computer shutdown

Qu'est-ce que Auto Shutdown Extension ?

Auto Shutdown Extension est une extension Chrome développée par auto.shutdown.extension, et sa fonction principale est "Small and simple extension for automatic computer shutdown".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Auto Shutdown Extension

Téléchargez les fichiers d'extension Auto Shutdown Extension au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Auto Shutdown Extension Auto Shutdown Extension
ID heanibacideokneklnfomdlokppmcaam
URL Officiel https://chromewebstore.google.com/detail/auto-shutdown-extension/heanibacideokneklnfomdlokppmcaam
Description Small and simple extension for automatic computer shutdown
Taille du Fichier 1.48 MB
Nombre d'Installations 5,000
Version Actuelle 0.1.24
Dernière Mise à Jour 2023-11-09
Date de Publication 2020-06-01
Évaluation 3.00/5 Total 4 Évaluations
Développeur auto.shutdown.extension
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/senaa12/shutdown-extension
URL de la Page d'Aide https://github.com/senaa12/shutdown-extension/blob/master/FAQ.md
Langues Prises en Charge 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
}