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.

什麼是Chrome Alarms?

Chrome Alarms是由KidEkko開發的Chrome擴展程式,該擴展的主要功能是“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.”。

擴展截圖

screenshot
screenshot

下載Chrome Alarms擴展crx文件

下載Chrome Alarms擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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.                    

擴展基本資訊

名稱 Chrome Alarms Chrome Alarms
ID gflcogcigloiniobpagephgaldchpclf
官方網址 https://chromewebstore.google.com/detail/chrome-alarms/gflcogcigloiniobpagephgaldchpclf
簡介 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.
檔案大小 29.69 KB
安裝次數 105
目前版本 1.0.1
更新時間 2022-04-08
上架時間 2022-03-25
評分 3.00/5 共 2 次評分
開發者 KidEkko
電子郵箱 [email protected]
付費類型 free
支援的語言 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"
}