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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย KidEkko และคุณลักษณะหลักของมันคือ "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

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Chrome Alarms

ดาวน์โหลดไฟล์ส่วนขยาย 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
URL อย่างเป็นทางการ 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"
}