Timestamp My Page
The extension adds timestamp to all your pages. That's it!
什么是Timestamp My Page?
Timestamp My Page是由Viral Shah开发的Chrome扩展程序,该扩展的主要功能是“The extension adds timestamp to all your pages. That's it!”。
扩展截图
下载Timestamp My Page扩展crx文件
下载Timestamp My Page扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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
扩展基本信息
名称 | Timestamp My Page |
ID | mpajpafkmlfpgibikbbfadimgdciikan |
官方URL | https://chromewebstore.google.com/detail/timestamp-my-page/mpajpafkmlfpgibikbbfadimgdciikan |
简介 | The extension adds timestamp to all your pages. That's it! |
文件大小 | 174 KB |
安装次数 | 628 |
当前版本 | 1.0.1 |
更新时间 | 2022-05-05 |
上架时间 | 2016-05-03 |
评分 | 5.00/5 共1次评分 |
开发者 | Viral Shah |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | 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" } } |