Time Clock

Display a clock on the page

Time Clockとは何ですか?

Time Clockは小明同学によって開発されたChromeの拡張機能で、その主な機能は「Display a clock on the page」です。

拡張機能のスクリーンショット

screenshot
screenshot

Time Clock拡張機能のCRXファイルをダウンロード

Time Clock拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

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

拡張機能の基本情報

名前 Time Clock Time Clock
ID kcbldbcjaedippbdbgclonbcjllcidhb
公式URL https://chromewebstore.google.com/detail/time-clock/kcbldbcjaedippbdbgclonbcjllcidhb
説明 Display a clock on the page
ファイルサイズ 23.14 KB
インストール数 55
現在のバージョン 0.2
最終更新日 2022-11-04
公開日 2022-10-15
評価 5.00/5 合計 2 レビュー
開発者 小明同学
Eメール [email protected]
支払い方法 free
対応言語 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": [
                "*:\/\/*\/*"
            ]
        }
    ]
}