SleepyHead

A Sleep timer for any website.

Cos'è SleepyHead?

SleepyHead è un'estensione di Chrome sviluppata da https://snazzytechnologies.com, e la sua funzione principale è "A Sleep timer for any website.".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione SleepyHead

Scarica i file di estensione SleepyHead 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

                        A sleep timer extension for any website so you get a more restful sleep.

Start playing some media, set a timer and watch or listen until you doze off. When the timer has ended, the SleepyHead timer completed page will be shown, allowing your devices screen to turn off. Hit the back button the next day to resume watching.

Use the optional Sound Softener to suppress loud and sudden sounds and enable the optional Night Shift to reduce blue light from your screen.                    

Informazioni di Base sull'Estensione

Nome SleepyHead SleepyHead
ID pklbmflmehnfibgomgdbacoemfnloedd
URL Ufficiale https://chromewebstore.google.com/detail/sleepyhead/pklbmflmehnfibgomgdbacoemfnloedd
Descrizione A Sleep timer for any website.
Dimensione del File 55.31 KB
Conteggio Installazioni 16
Versione Corrente 0.1.0
Ultimo Aggiornamento 2022-12-20
Data di Pubblicazione 2022-12-20
Sviluppatore https://snazzytechnologies.com
Email [email protected]
Tipo di Pagamento in_app
Sito Web dell'Estensione https://sleepyhead.snazzytechnologies.com/
URL della Pagina di Aiuto https://sleepyhead.snazzytechnologies.com/support
URL della Pagina della Politica sulla Privacy https://sleepyhead.snazzytechnologies.com/privacy
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "SleepyHead",
    "version": "0.1.0",
    "description": "A Sleep timer for any website.",
    "background": {
        "service_worker": "assets\/js\/background.js"
    },
    "permissions": [
        "alarms",
        "storage",
        "scripting",
        "activeTab",
        "tabs"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "auth.html"
            ],
            "matches": [
                "https:\/\/sleepyhead.snazzytechnologies.com\/*"
            ]
        }
    ],
    "options_page": "preferences.html",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "assets\/js\/plugins\/shared.js",
                "assets\/js\/plugins\/sound-softener.js",
                "assets\/js\/plugins\/sleep-shift.js"
            ]
        }
    ],
    "minimum_chrome_version": "92",
    "action": {
        "default_icon": {
            "16": "assets\/icons\/icon128.png",
            "32": "assets\/icons\/icon128.png",
            "48": "assets\/icons\/icon128.png",
            "128": "assets\/icons\/icon128.png"
        },
        "default_title": "SleepyHead",
        "default_popup": "popup.html"
    },
    "manifest_version": 3
}