Overlay Clock

Displays a digital clock on a page.

Overlay Clock란 무엇입니까?

Overlay Clock은(는) YS에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Displays a digital clock on a page."입니다.

확장 프로그램 스크린샷

screenshot

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

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

확장 프로그램 사용 설명서

                        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 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"
}