时间戳转化
时间戳转换小工具。右键菜单显示转化,工具页时间戳转化
What is 时间戳转化?
时间戳转化 is a Chrome extension developed by sleepybear, and its main feature is "时间戳转换小工具。右键菜单显示转化,工具页时间戳转化".
Extension Screenshots
Download 时间戳转化 Extension CRX File
Download 时间戳转化 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
@ 说明 一个简易的时间戳转换工具,可以帮助用户简便地转换。不需要考虑日期格式,按照顺序年月日时分秒,不限制分隔符,或者10/13位时间戳自动识别 @ 版本 1.0.3 新增一些配置选项 右键菜单点击后,可在插件页同步时间戳 @ 版本 1.0.2 新增选中字符串右键菜单自动转换字符串/时间戳 @ 问题 1. 右键菜单暂时不能点击复制 2. 某些页面选中字符串后可能右键菜单不显示转换内容 @ 将来不知道什么时候可能也许会有的改进 1. 右键复制(暂时还没有这个的思路) 本来想右键菜单点击打开插件页的,由于 Chrome 的限制,这个无法做到 GitHub 地址:https://github.com/sleepybear1113/Convert-timestamp
Extension Basic Information
Name | 时间戳转化 |
ID | ahkgjgnlldlkagonpndejcbhipkealgo |
Official URL | https://chromewebstore.google.com/detail/%E6%97%B6%E9%97%B4%E6%88%B3%E8%BD%AC%E5%8C%96/ahkgjgnlldlkagonpndejcbhipkealgo |
Description | 时间戳转换小工具。右键菜单显示转化,工具页时间戳转化 |
File Size | 7.57 KB |
Installation Count | 1,712 |
Current Version | 1.0.3 |
Last Updated | 2022-01-04 |
Publish Date | 2020-08-05 |
Rating | 5.00/5 Total 4 Ratings |
Developer | sleepybear |
[email protected] | |
Payment Type | free |
Supported Languages | zh-CN |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "browser_action": { "default_popup": "popup.html" }, "description": "\u65f6\u95f4\u6233\u8f6c\u6362\u5c0f\u5de5\u5177\u3002\u53f3\u952e\u83dc\u5355\u663e\u793a\u8f6c\u5316\uff0c\u5de5\u5177\u9875\u65f6\u95f4\u6233\u8f6c\u5316", "manifest_version": 2, "name": "\u65f6\u95f4\u6233\u8f6c\u5316", "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "content.js" ] } ], "options_page": "popup.html", "version": "1.0.3", "permissions": [ "clipboardRead", "contextMenus" ], "background": { "scripts": [ "background.js", "utils.js" ] } } |