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…

Alarm Uคืออะไร?

Alarm U เป็นส่วนขยายของ Chrome ที่พัฒนาโดย matt.alpe.dev และคุณลักษณะหลักของมันคือ "This extension allows you to set alarms in chrome. On alarm triggered shows a notification and open an alert, if has configured a…"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

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

ดาวน์โหลดไฟล์ส่วนขยาย Alarm U ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Alarm U Alarm U
ID pfilhgkgnhmgoifldaakiddnmhabamjd
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/alarm-u/pfilhgkgnhmgoifldaakiddnmhabamjd
คำอธิบาย This extension allows you to set alarms in chrome. On alarm triggered shows a notification and open an alert, if has configured a…
ขนาดไฟล์ 136 KB
จำนวนการติดตั้ง 43
เวอร์ชันปัจจุบัน 1.0.0
อัปเดตครั้งล่าสุด 2023-03-29
วันที่เผยแพร่ 2023-03-22
คะแนน 5.00/5 รวมทั้งหมด 4 คะแนน
ผู้พัฒนา matt.alpe.dev
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/matheus-alpe/alarm-u-extension
URL หน้าช่วยเหลือ https://github.com/matheus-alpe/alarm-u-extension/issues
ภาษาที่รองรับ 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"
    }
}