Overlay Clock
Displays a digital clock on a page.
什么是Overlay Clock?
Overlay Clock是由YS开发的Chrome扩展程序,该扩展的主要功能是“Displays a digital clock on a page.”。
扩展截图
下载Overlay Clock扩展crx文件
下载Overlay Clock扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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.
扩展基本信息
名称 | Overlay Clock |
ID | oocmeehjidegkkilebmenjdogocfefbd |
官方URL | https://chromewebstore.google.com/detail/overlay-clock/oocmeehjidegkkilebmenjdogocfefbd |
简介 | Displays a digital clock on a page. |
文件大小 | 290 KB |
安装次数 | 2,112 |
当前版本 | 0.8 |
更新时间 | 2024-01-22 |
上架时间 | 2019-04-13 |
评分 | 3.89/5 共27次评分 |
开发者 | YS |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/yaronf/overlay-clock |
支持的语言 | 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" } |