Time Clock
Display a clock on the page
Apa itu Time Clock?
Time Clock adalah ekstensi Chrome yang dikembangkan oleh 小明同学, dan fitur utamanya adalah "Display a clock on the page".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Time Clock
Unduh file ekstensi Time Clock dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
一个网页时钟,方便用户查看当前时间,可以选择数字样式、圆盘样式或者关闭它。
Informasi Dasar Ekstensi
Nama | Time Clock |
ID | kcbldbcjaedippbdbgclonbcjllcidhb |
URL Resmi | https://chromewebstore.google.com/detail/time-clock/kcbldbcjaedippbdbgclonbcjllcidhb |
Deskripsi | Display a clock on the page |
Ukuran File | 23.14 KB |
Jumlah Instalasi | 55 |
Versi Saat Ini | 0.2 |
Terakhir Diperbarui | 2022-11-04 |
Tanggal Publikasi | 2022-10-15 |
Penilaian | 5.00/5 Total 2 Penilaian |
Pengembang | 小明同学 |
[email protected] | |
Tipe Pembayaran | free |
Bahasa yang Didukung | en,zh-CN |
manifest.json | |
{ "manifest_version": 3, "name": "__MSG_TimeClock__", "version": "0.2", "default_locale": "zh_CN", "action": { "default_icon": { "19": "time.png", "38": "time.png" }, "default_popup": "option\/options.html", "default_title": "__MSG_TimeClock__" }, "content_scripts": [ { "js": [ "option\/defaults.js", "clock.js" ], "matches": [ "*:\/\/*\/*" ], "run_at": "document_end" } ], "content_security_policy": { "default-src": "none", "style-src": "self", "script-src": "self" }, "description": "__MSG_DisplaysAClockOnAPage__", "icons": { "128": "time.png", "48": "time.png" }, "options_page": "option\/painted_eggshell.html", "permissions": [ "storage" ], "short_name": "__MSG_TimeClock__", "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "web_accessible_resources": [ { "resources": [ "circle\/circle_clock.js", "circle\/circle_clock.css" ], "matches": [ "*:\/\/*\/*" ] } ] } |