Time Clock

Display a clock on the page

Time Clock란 무엇입니까?

Time Clock은(는) 小明同学에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Display a clock on the page"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Time Clock 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

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

확장 프로그램 기본 정보

이름 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 개의 평점
개발자 小明同学
이메일 [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": [
                "*:\/\/*\/*"
            ]
        }
    ]
}