Bitbucket (+ others): absolute commit date

Converts dates from relative format to absolute (format presets) for Bitbucket.org, may for *.atlassian.com(jira) ...

什么是Bitbucket (+ others): absolute commit date?

Bitbucket (+ others): absolute commit date是由bfday开发的Chrome扩展程序,该扩展的主要功能是“Converts dates from relative format to absolute (format presets) for Bitbucket.org, may for *.atlassian.com(jira) ...”。

扩展截图

screenshot
screenshot
screenshot
screenshot
screenshot

下载Bitbucket (+ others): absolute commit date扩展crx文件

下载Bitbucket (+ others): absolute commit date扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Shows actual (absolute) date of commits (and other date-containing fields) for Bitbucket.org, *.atlassian.com and others domains which have 

扩展基本信息

名称 Bitbucket (+ others): absolute commit date Bitbucket (+ others): absolute commit date
ID ibmpjnmlhfboaljbechlinicnlpmlgnp
官方URL https://chromewebstore.google.com/detail/bitbucket-+-others-absolu/ibmpjnmlhfboaljbechlinicnlpmlgnp
简介 Converts dates from relative format to absolute (format presets) for Bitbucket.org, may for *.atlassian.com(jira) ...
文件大小 12.6 KB
安装次数 737
当前版本 2.2.0
更新时间 2019-03-13
上架时间 2019-03-13
评分 4.17/5 共12次评分
开发者 bfday
电子邮箱 [email protected]
付费类型 free
帮助页面URL https://github.com/bfday
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Bitbucket (+ others): absolute commit date",
    "short_name": "DatesConverter",
    "description": "Converts dates from relative format to absolute (format presets) for Bitbucket.org, may for *.atlassian.com(jira) ...",
    "version": "2.2.0",
    "background": {
        "persistent": true,
        "scripts": [
            "background.min.js",
            "sharedCode.min.js"
        ]
    },
    "browser_action": {
        "default_icon": "icons\/48.png",
        "default_popup": "popup.html",
        "default_title": "Absolute dates of commits"
    },
    "permissions": [
        "tabs",
        "activeTab",
        "storage"
    ],
    "icons": {
        "48": "icons\/48.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*"
            ],
            "js": [
                "sharedCode.min.js",
                "content_script.min.js"
            ]
        }
    ]
}