Sleep Timer

Put any tab on a sleep timer to close or mute the tab when the timer expires.

Apa itu Sleep Timer?

Sleep Timer adalah ekstensi Chrome yang dikembangkan oleh daniel.andrew.dehaas, dan fitur utamanya adalah "Put any tab on a sleep timer to close or mute the tab when the timer expires.".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Sleep Timer

Unduh file ekstensi Sleep Timer dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        Turn on a sleep timer for any tab. You can choose to either close or mute the tab when the timer expires.                    

Informasi Dasar Ekstensi

Nama Sleep Timer Sleep Timer
ID aogefgiamlllkemngojodbhbdigamjkj
URL Resmi https://chromewebstore.google.com/detail/sleep-timer/aogefgiamlllkemngojodbhbdigamjkj
Deskripsi Put any tab on a sleep timer to close or mute the tab when the timer expires.
Ukuran File 25.49 KB
Jumlah Instalasi 5,756
Versi Saat Ini 1.0
Terakhir Diperbarui 2021-02-03
Tanggal Publikasi 2021-02-02
Penilaian 2.52/5 Total 21 Penilaian
Pengembang daniel.andrew.dehaas
Email [email protected]
Tipe Pembayaran free
URL Halaman Bantuan https://www.danielde.dev/
Bahasa yang Didukung en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Sleep Timer",
    "version": "1.0",
    "description": "Put any tab on a sleep timer to close or mute the tab when the timer expires.",
    "permissions": [
        "tabs",
        "alarms",
        "storage"
    ],
    "background": {
        "scripts": [
            ".\/background.js"
        ],
        "persistent": false
    },
    "icons": {
        "16": "icons\/icon-16.png",
        "32": "icons\/icon-32.png",
        "48": "icons\/icon-48.png",
        "128": "icons\/icon-128.png"
    },
    "browser_action": {
        "default_icon": {
            "16": "icons\/icon-16.png",
            "32": "icons\/icon-32.png",
            "48": "icons\/icon-48.png",
            "128": "icons\/icon-128.png"
        },
        "default_popup": "popup\/popup.html",
        "default_title": "Sleep Timer"
    }
}