Bookmark Clock v2
Adds a bookmark with the current time
Bookmark Clock v2คืออะไร?
Bookmark Clock v2 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Theodore Capinski และคุณลักษณะหลักของมันคือ "Adds a bookmark with the current time"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Bookmark Clock v2
ดาวน์โหลดไฟล์ส่วนขยาย Bookmark Clock v2 ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
A great way to know the time without having to look down at the dock. Especially useful if you have the dock set to autohide.
Will update a bookmark with the current time, in your local time zone.
To use:
1) Press the extension icon
2) Click "new"
3) Click "turn on"
4) Open or reload any tab other than chrome.google.com or any chrome:// or edge://
5) Enjoy
New:
This will create a new bookmark, titled "Clock," where the time will appear, in your bookmark bar. You can move this bookmark anywhere you like, but I recommend keeping it in the main bookmark bar. If you cannot see any bookmarks, press CTRL + SHIFT + B to enable the bookmark bar. You can press this multiple times and every bookmark created will work.
Turn On/Off:
Toggles the bookmark updating. Allows you to edit or open bookmarks in the bookmarks bar, or if it is distracting.
***
Important Info:
If you have no existing bookmarks the "new" button doesn't work.
Does not work on system tabs (chrome://, etc)
Syncs with every device you are signed into.
No user data is collected at all.
FAQ:
HELP I CAN'T LOOK IN BOOKMARK FOLDERS OR RIGHT CLICK BOOKMARKS:
- Turn off the extension by clicking the icon and clicking "turn off." You can turn it back on whenever. ข้อมูลพื้นฐานของส่วนขยาย
| ชื่อ | |
| ID | cbabljagchnniaibdlhllgafeflmecdn |
| URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/bookmark-clock-v2/cbabljagchnniaibdlhllgafeflmecdn |
| คำอธิบาย | Adds a bookmark with the current time |
| ขนาดไฟล์ | 6.07 KB |
| จำนวนการติดตั้ง | 112 |
| เวอร์ชันปัจจุบัน | 1.0 |
| อัปเดตครั้งล่าสุด | 2022-02-04 |
| วันที่เผยแพร่ | 2021-11-09 |
| ผู้พัฒนา | Theodore Capinski |
| อีเมล | [email protected] |
| ประเภทการชำระเงิน | free |
| ภาษาที่รองรับ | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Bookmark Clock v2",
"version": "1.0",
"description": "Adds a bookmark with the current time",
"action": {
"default_icon": {
"16": "icon.png"
},
"default_title": "Bookmark Clock",
"default_popup": "popup.html"
},
"background": {
"service_worker": "background.js"
},
"permissions": [
"bookmarks",
"storage"
],
"content_scripts": [
{
"matches": [
"https:\/\/*\/*"
],
"js": [
"script.js"
]
}
]
} | |