时间戳转化

时间戳转换小工具。右键菜单显示转化,工具页时间戳转化

Wat is 时间戳转化?

时间戳转化 is een Chrome-extensie ontwikkeld door sleepybear, en de belangrijkste functie is "时间戳转换小工具。右键菜单显示转化,工具页时间戳转化".

Extensie Screenshots

screenshot
screenshot
screenshot
screenshot

Download het CRX-bestand van de extensie 时间戳转化

Download 时间戳转化-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        @ 说明
一个简易的时间戳转换工具,可以帮助用户简便地转换。不需要考虑日期格式,按照顺序年月日时分秒,不限制分隔符,或者10/13位时间戳自动识别

@ 版本 1.0.3
新增一些配置选项
右键菜单点击后,可在插件页同步时间戳

@ 版本 1.0.2 
新增选中字符串右键菜单自动转换字符串/时间戳

@ 问题
1. 右键菜单暂时不能点击复制
2. 某些页面选中字符串后可能右键菜单不显示转换内容

@ 将来不知道什么时候可能也许会有的改进
1. 右键复制(暂时还没有这个的思路)

本来想右键菜单点击打开插件页的,由于 Chrome 的限制,这个无法做到

GitHub 地址:https://github.com/sleepybear1113/Convert-timestamp                    

Basisinformatie over de Extensie

Naam 时间戳转化 时间戳转化
ID ahkgjgnlldlkagonpndejcbhipkealgo
Officiële URL https://chromewebstore.google.com/detail/%E6%97%B6%E9%97%B4%E6%88%B3%E8%BD%AC%E5%8C%96/ahkgjgnlldlkagonpndejcbhipkealgo
Beschrijving 时间戳转换小工具。右键菜单显示转化,工具页时间戳转化
Bestandsgrootte 7.57 KB
Aantal Installaties 1,712
Huidige Versie 1.0.3
Laatst Bijgewerkt 2022-01-04
Publicatiedatum 2020-08-05
Beoordeling 5.00/5 Totaal 4 Beoordelingen
Ontwikkelaar sleepybear
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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"
        ]
    }
}