Time Clock

Display a clock on the page

What is Time Clock?

Time Clock is a Chrome extension developed by 小明同学, and its main feature is "Display a clock on the page".

Extension Screenshots

screenshot
screenshot

Download Time Clock Extension CRX File

Download Time Clock extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        一个网页时钟,方便用户查看当前时间,可以选择数字样式、圆盘样式或者关闭它。                    

Extension Basic Information

Name Time Clock Time Clock
ID kcbldbcjaedippbdbgclonbcjllcidhb
Official URL https://chromewebstore.google.com/detail/time-clock/kcbldbcjaedippbdbgclonbcjllcidhb
Description Display a clock on the page
File Size 23.14 KB
Installation Count 55
Current Version 0.2
Last Updated 2022-11-04
Publish Date 2022-10-15
Rating 5.00/5 Total 2 Ratings
Developer 小明同学
Email [email protected]
Payment Type free
Supported Languages 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": [
                "*:\/\/*\/*"
            ]
        }
    ]
}