Time Clock

Display a clock on the page

Wat is Time Clock?

Time Clock is een Chrome-extensie ontwikkeld door 小明同学, en de belangrijkste functie is "Display a clock on the page".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie Time Clock

Download Time Clock-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

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

Basisinformatie over de Extensie

Naam Time Clock Time Clock
ID kcbldbcjaedippbdbgclonbcjllcidhb
Officiële URL https://chromewebstore.google.com/detail/time-clock/kcbldbcjaedippbdbgclonbcjllcidhb
Beschrijving Display a clock on the page
Bestandsgrootte 23.14 KB
Aantal Installaties 55
Huidige Versie 0.2
Laatst Bijgewerkt 2022-11-04
Publicatiedatum 2022-10-15
Beoordeling 5.00/5 Totaal 2 Beoordelingen
Ontwikkelaar 小明同学
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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": [
                "*:\/\/*\/*"
            ]
        }
    ]
}