Alarm U

This extension allows you to set alarms in chrome. On alarm triggered shows a notification and open an alert, if has configured a…

Co je Alarm U?

Alarm U je rozšíření Chrome vyvinuté matt.alpe.dev, a jeho hlavní funkcí je „This extension allows you to set alarms in chrome. On alarm triggered shows a notification and open an alert, if has configured a…“.

Snímky obrazovky rozšíření

screenshot
screenshot

Stáhnout soubor CRX rozšíření Alarm U

Stáhněte si soubory rozšíření Alarm U ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        This extension allows you to set alarms in chrome.

On alarm triggered shows a notification and open an alert, if has configured a URL will open a new tab with the provided link.                    

Základní Informace o Rozšíření

Název Alarm U Alarm U
ID pfilhgkgnhmgoifldaakiddnmhabamjd
Oficiální URL https://chromewebstore.google.com/detail/alarm-u/pfilhgkgnhmgoifldaakiddnmhabamjd
Popis This extension allows you to set alarms in chrome. On alarm triggered shows a notification and open an alert, if has configured a…
Velikost souboru 136 KB
Počet instalací 43
Aktuální Verze 1.0.0
Poslední Aktualizace 2023-03-29
Datum Vydání 2023-03-22
Hodnocení 5.00/5 Celkem 4 Hodnocení
Vývojář matt.alpe.dev
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/matheus-alpe/alarm-u-extension
URL Stránky Nápovědy https://github.com/matheus-alpe/alarm-u-extension/issues
Podporované Jazyky en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Alarm U",
    "version": "1.0.0",
    "host_permissions": [
        "https:\/\/*\/*",
        "http:\/\/*\/*"
    ],
    "background": {
        "service_worker": "service-worker.js"
    },
    "permissions": [
        "tabs",
        "scripting",
        "storage",
        "notifications",
        "alarms"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "*.html",
                "*.svg",
                "*.js",
                "*.css",
                "*.svg"
            ],
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ]
        }
    ],
    "externally_connectable": {
        "matches": [
            "https:\/\/*\/*",
            "http:\/\/*\/*"
        ]
    },
    "action": [],
    "icons": {
        "16": "favicon-16x16.png",
        "32": "favicon-32x32.png",
        "48": "favicon-48x48.png",
        "128": "favicon-128x128.png"
    }
}