Omnibox Timer Again

A simple timer built for Edge Browser, Based on Omnibox Timer

Omnibox Timer Againคืออะไร?

Omnibox Timer Again เป็นส่วนขยายของ Chrome ที่พัฒนาโดย shinemoon และคุณลักษณะหลักของมันคือ "A simple timer built for Edge Browser, Based on Omnibox Timer"

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Omnibox Timer Again

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

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

                        Omnibox Timer Again

Yet another quick timer tool for Chrome users, based on Omnibox Timer

"Omnibox Timer" is so good extension, but with below restriction (Or indeed it's just author's own special flavor... I believe so.)

- Can't support absolute time for reminder, e.g. 14:00 Call Mom
- Can't support combined way of configuration , e.g. 1h20m Go Home
- Can't cancel/stop ongoing timers
- Help info is not so readable for newbie, especially if they don't have habit to read the webstore page
- Peronsally I am not so in favor of the page style of option page, icon and font, etc.... but just personally

That's the reason I fork and create the extension: https://github.com/shinemoon/omnibox-timer.git ( from https://github.com/taicki/omnibox-timer.git )

And also there is kind contribution from @nocaoper, author of Omnibox Timer FIX, who had provide pull request to merge his fix features into this one.

Really thanks.

How to Use It:

1. Focus in the address bar;
2. Type 'ta' and hit space key, then you will see it invokes extension prompt for further input;
3. Use syntax like below example to define the reminders for timer;
    + [Number]s|m|h [Reminder Description](e.g. 10m Have Dinner) , or
    +  hh:mm [Reminder Description] (e.g. 20:20 Go Home)
4. Reminder will pop up by defined time;
5. Options and Timers can be managed via this page.

Patch contributed by @nocaoper:
1. Support the quick clear function in address bar : after the Omnibox Timer Activated , type 'clr' and return, you can clean all reminders;
2. Prediction in alarm time when user typing in the address bar;                    

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

ชื่อ Omnibox Timer Again Omnibox Timer Again
ID nocmdcegkncmgdianofhdlhbaoinmonm
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/omnibox-timer-again/nocmdcegkncmgdianofhdlhbaoinmonm
คำอธิบาย A simple timer built for Edge Browser, Based on Omnibox Timer
ขนาดไฟล์ 417 KB
จำนวนการติดตั้ง 295
เวอร์ชันปัจจุบัน 1.0
อัปเดตครั้งล่าสุด 2024-02-22
วันที่เผยแพร่ 2017-11-28
คะแนน 4.33/5 รวมทั้งหมด 3 คะแนน
ผู้พัฒนา shinemoon
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/shinemoon/omnibox-timer
URL หน้าช่วยเหลือ https://github.com/shinemoon/omnibox-timer
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Omnibox Timer Again",
    "description": "A simple timer built for Edge Browser, Based on Omnibox Timer",
    "version": "1.0",
    "short_name": "OTA",
    "omnibox": {
        "keyword": "ta"
    },
    "icons": {
        "16": "256.png",
        "48": "256.png",
        "256": "256.png"
    },
    "action": {
        "default_icon": {
            "19": "256.png",
            "38": "256.png"
        },
        "default_title": "Omnibox Timer Again"
    },
    "background": {
        "service_worker": "background.js"
    },
    "options_page": "options.html",
    "permissions": [
        "notifications",
        "tts",
        "storage"
    ]
}