Overlay Clock

Displays a digital clock on a page.

What is Overlay Clock?

Overlay Clock is a Chrome extension developed by YS, and its main feature is "Displays a digital clock on a page.".

Extension Screenshots

screenshot

Download Overlay Clock Extension CRX File

Download Overlay 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

                        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.                    

Extension Basic Information

Name Overlay Clock Overlay Clock
ID oocmeehjidegkkilebmenjdogocfefbd
Official URL https://chromewebstore.google.com/detail/overlay-clock/oocmeehjidegkkilebmenjdogocfefbd
Description Displays a digital clock on a page.
File Size 290 KB
Installation Count 2,112
Current Version 0.8
Last Updated 2024-01-22
Publish Date 2019-04-13
Rating 3.89/5 Total 27 Ratings
Developer YS
Email [email protected]
Payment Type free
Extension Website https://github.com/yaronf/overlay-clock
Supported Languages 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"
}