Sleep Timer

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

Co to jest Sleep Timer?

Sleep Timer to rozszerzenie Chrome opracowane przez daniel.andrew.dehaas, a jego główną funkcją jest „Put any tab on a sleep timer to close or mute the tab when the timer expires.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Sleep Timer

Pobierz pliki rozszerzeń Sleep Timer w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

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

Podstawowe informacje o rozszerzeniu

Nazwa Sleep Timer Sleep Timer
ID aogefgiamlllkemngojodbhbdigamjkj
Oficjalny URL https://chromewebstore.google.com/detail/sleep-timer/aogefgiamlllkemngojodbhbdigamjkj
Opis Put any tab on a sleep timer to close or mute the tab when the timer expires.
Rozmiar pliku 25.49 KB
Liczba instalacji 5,756
Aktualna Wersja 1.0
Ostatnia Aktualizacja 2021-02-03
Data Publikacji 2021-02-02
Ocena 2.52/5 Łącznie 21 Oceny
Deweloper daniel.andrew.dehaas
E-mail [email protected]
Typ Płatności free
Adres URL Strony Pomocy https://www.danielde.dev/
Obsługiwane Języki 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"
    }
}