Overlay Clock
Displays a digital clock on a page.
Qu'est-ce que Overlay Clock ?
Overlay Clock est une extension Chrome développée par YS, et sa fonction principale est "Displays a digital clock on a page.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Overlay Clock
Téléchargez les fichiers d'extension Overlay Clock au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Overlay Clock |
ID | oocmeehjidegkkilebmenjdogocfefbd |
URL Officiel | https://chromewebstore.google.com/detail/overlay-clock/oocmeehjidegkkilebmenjdogocfefbd |
Description | Displays a digital clock on a page. |
Taille du Fichier | 290 KB |
Nombre d'Installations | 2,112 |
Version Actuelle | 0.8 |
Dernière Mise à Jour | 2024-01-22 |
Date de Publication | 2019-04-13 |
Évaluation | 3.89/5 Total 27 Évaluations |
Développeur | YS |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/yaronf/overlay-clock |
Langues Prises en Charge | 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" } |