Chrome Alarms

Set alarms that will open specified URL's at desired times. The URL will be opened in a new tab along with an optional notification.

Qu'est-ce que Chrome Alarms ?

Chrome Alarms est une extension Chrome développée par KidEkko, et sa fonction principale est "Set alarms that will open specified URL's at desired times. The URL will be opened in a new tab along with an optional notification.".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Chrome Alarms

Téléchargez les fichiers d'extension Chrome Alarms au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        An alarm clock for your browser. If you struggle to remember to check your emails regularly, if you want to schedule a task for yourself that you don't have time for right now, this is for you. I designed this as someone who has ADHD, and have struggled with remembering to do tasks that I put aside even when I had time. This is a very simple extension that will allow you to create alarms that open tabs to any website you want at whatever time you want.                    

Informations de Base sur l'Extension

Nom Chrome Alarms Chrome Alarms
ID gflcogcigloiniobpagephgaldchpclf
URL Officiel https://chromewebstore.google.com/detail/chrome-alarms/gflcogcigloiniobpagephgaldchpclf
Description Set alarms that will open specified URL's at desired times. The URL will be opened in a new tab along with an optional notification.
Taille du Fichier 29.69 KB
Nombre d'Installations 105
Version Actuelle 1.0.1
Dernière Mise à Jour 2022-04-08
Date de Publication 2022-03-25
Évaluation 3.00/5 Total 2 Évaluations
Développeur KidEkko
Email [email protected]
Type de Paiement free
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Chrome Alarms",
    "description": "Set alarms that will open specified URL's at desired times. The URL will be opened in a new tab along with an optional notification.",
    "version": "1.0.1",
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "storage",
        "alarms",
        "background",
        "notifications"
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "\/images\/alarm16.png",
            "32": "\/images\/alarm32.png",
            "48": "\/images\/alarm48.png",
            "128": "\/images\/alarm128.png"
        }
    },
    "icons": {
        "16": "\/images\/alarm16.png",
        "32": "\/images\/alarm32.png",
        "48": "\/images\/alarm48.png",
        "128": "\/images\/alarm128.png"
    },
    "options_page": "homepage.html"
}