Timestamp My Page
The extension adds timestamp to all your pages. That's it!
Qu'est-ce que Timestamp My Page ?
Timestamp My Page est une extension Chrome développée par Viral Shah, et sa fonction principale est "The extension adds timestamp to all your pages. That's it!".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Timestamp My Page
Téléchargez les fichiers d'extension Timestamp My Page 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
Click on the extension icon to show/hide current date-time on all your pages. Other Features: drag around the timestamp anywhere on page control color, opacity control date time display format, timezone
Informations de Base sur l'Extension
Nom | Timestamp My Page |
ID | mpajpafkmlfpgibikbbfadimgdciikan |
URL Officiel | https://chromewebstore.google.com/detail/timestamp-my-page/mpajpafkmlfpgibikbbfadimgdciikan |
Description | The extension adds timestamp to all your pages. That's it! |
Taille du Fichier | 174 KB |
Nombre d'Installations | 628 |
Version Actuelle | 1.0.1 |
Dernière Mise à Jour | 2022-05-05 |
Date de Publication | 2016-05-03 |
Évaluation | 5.00/5 Total 1 Évaluations |
Développeur | Viral Shah |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Timestamp My Page", "description": "The extension adds timestamp to all your pages. That's it!", "version": "1.0.1", "content_security_policy": { "extension_pages": "script-src 'self'; object-src 'self'" }, "permissions": [ "tabs", "storage" ], "host_permissions": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "action": { "default_icon": "images\/icon_128.png", "default_title": "Timestamp My Page" }, "background": { "service_worker": "js\/background.js" }, "options_page": "pages\/options.html", "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "js\/lib\/jquery-2.1.3.js", "js\/lib\/jquery-ui.min.js", "js\/lib\/moment.js", "js\/lib\/timezones.js", "js\/lib\/moment-timezone-with-data.js", "js\/cs.js" ], "css": [ "css\/cs.css" ], "run_at": "document_end" } ], "icons": { "128": "images\/icon_128.png" } } |