时间戳转化
时间戳转换小工具。右键菜单显示转化,工具页时间戳转化
Cos'è 时间戳转化?
时间戳转化 è un'estensione di Chrome sviluppata da sleepybear, e la sua funzione principale è "时间戳转换小工具。右键菜单显示转化,工具页时间戳转化".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione 时间戳转化
Scarica i file di estensione 时间戳转化 in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
@ 说明 一个简易的时间戳转换工具,可以帮助用户简便地转换。不需要考虑日期格式,按照顺序年月日时分秒,不限制分隔符,或者10/13位时间戳自动识别 @ 版本 1.0.3 新增一些配置选项 右键菜单点击后,可在插件页同步时间戳 @ 版本 1.0.2 新增选中字符串右键菜单自动转换字符串/时间戳 @ 问题 1. 右键菜单暂时不能点击复制 2. 某些页面选中字符串后可能右键菜单不显示转换内容 @ 将来不知道什么时候可能也许会有的改进 1. 右键复制(暂时还没有这个的思路) 本来想右键菜单点击打开插件页的,由于 Chrome 的限制,这个无法做到 GitHub 地址:https://github.com/sleepybear1113/Convert-timestamp
Informazioni di Base sull'Estensione
Nome | 时间戳转化 |
ID | ahkgjgnlldlkagonpndejcbhipkealgo |
URL Ufficiale | https://chromewebstore.google.com/detail/%E6%97%B6%E9%97%B4%E6%88%B3%E8%BD%AC%E5%8C%96/ahkgjgnlldlkagonpndejcbhipkealgo |
Descrizione | 时间戳转换小工具。右键菜单显示转化,工具页时间戳转化 |
Dimensione del File | 7.57 KB |
Conteggio Installazioni | 1,712 |
Versione Corrente | 1.0.3 |
Ultimo Aggiornamento | 2022-01-04 |
Data di Pubblicazione | 2020-08-05 |
Valutazione | 5.00/5 Totale 4 Valutazioni |
Sviluppatore | sleepybear |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | 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" ] } } |