Overlay Clock
Displays a digital clock on a page.
Apa itu Overlay Clock?
Overlay Clock adalah ekstensi Chrome yang dikembangkan oleh YS, dan fitur utamanya adalah "Displays a digital clock on a page.".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Overlay Clock
Unduh file ekstensi Overlay 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
Displays a small digital clock at the corner of the screen, on a small semi-transparent patch. Colors and opacity are configurable. You can choose a 12- or 24-hour clock. The clock can be restricted to fullscreen mode only, which makes it ideal when reading text, e.g. with the Kindle Cloud Reader. Based on the original Overlay Clock extension by mk, improved to eliminate web site conflicts.
Informasi Dasar Ekstensi
Nama | Overlay Clock |
ID | oocmeehjidegkkilebmenjdogocfefbd |
URL Resmi | https://chromewebstore.google.com/detail/overlay-clock/oocmeehjidegkkilebmenjdogocfefbd |
Deskripsi | Displays a digital clock on a page. |
Ukuran File | 290 KB |
Jumlah Instalasi | 2,112 |
Versi Saat Ini | 0.8 |
Terakhir Diperbarui | 2024-01-22 |
Tanggal Publikasi | 2019-04-13 |
Penilaian | 3.89/5 Total 27 Penilaian |
Pengembang | YS |
[email protected] | |
Tipe Pembayaran | free |
Situs Ekstensi | https://github.com/yaronf/overlay-clock |
Bahasa yang Didukung | en |
manifest.json | |
{ "browser_action": { "default_icon": { "19": "clock-icon19.png", "38": "clock-icon38.png" }, "default_popup": "options.html", "default_title": "Overlay Clock" }, "browser_specific_settings": { "gecko": { "id": "{96823de3-bcbd-4dd7-b810-858aa67edb66}" } }, "content_scripts": [ { "js": [ "defaults.js", "clock.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*", "file:\/\/*\/*" ], "run_at": "document_end" } ], "content_security_policy": "default-src 'none'; style-src 'self'; script-src 'self';", "description": "Displays a digital clock on a page.", "icons": { "128": "icon128.png", "48": "icon48.png" }, "manifest_version": 2, "name": "Overlay Clock", "options_ui": { "page": "options.html" }, "permissions": [ "storage" ], "short_name": "OverlayClock", "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx", "version": "0.8" } |