Auto Shutdown Extension

Small and simple extension for automatic computer shutdown

Cos'è Auto Shutdown Extension?

Auto Shutdown Extension è un'estensione di Chrome sviluppata da auto.shutdown.extension, e la sua funzione principale è "Small and simple extension for automatic computer shutdown".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Auto Shutdown Extension

Scarica i file di estensione Auto Shutdown Extension in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Auto Shutdown Extension Auto Shutdown Extension
ID heanibacideokneklnfomdlokppmcaam
URL Ufficiale https://chromewebstore.google.com/detail/auto-shutdown-extension/heanibacideokneklnfomdlokppmcaam
Descrizione Small and simple extension for automatic computer shutdown
Dimensione del File 1.48 MB
Conteggio Installazioni 5,000
Versione Corrente 0.1.24
Ultimo Aggiornamento 2023-11-09
Data di Pubblicazione 2020-06-01
Valutazione 3.00/5 Totale 4 Valutazioni
Sviluppatore auto.shutdown.extension
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/senaa12/shutdown-extension
URL della Pagina di Aiuto https://github.com/senaa12/shutdown-extension/blob/master/FAQ.md
Lingue Supportate 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
}