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
}