Bitbucket (+ others): absolute commit date

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

Co to jest Bitbucket (+ others): absolute commit date?

Bitbucket (+ others): absolute commit date to rozszerzenie Chrome opracowane przez bfday, a jego główną funkcją jest „Converts dates from relative format to absolute (format presets) for Bitbucket.org, may for *.atlassian.com(jira) ...”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Bitbucket (+ others): absolute commit date

Pobierz pliki rozszerzeń Bitbucket (+ others): absolute commit date w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

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

Podstawowe informacje o rozszerzeniu

Nazwa Bitbucket (+ others): absolute commit date Bitbucket (+ others): absolute commit date
ID ibmpjnmlhfboaljbechlinicnlpmlgnp
Oficjalny URL https://chromewebstore.google.com/detail/bitbucket-+-others-absolu/ibmpjnmlhfboaljbechlinicnlpmlgnp
Opis Converts dates from relative format to absolute (format presets) for Bitbucket.org, may for *.atlassian.com(jira) ...
Rozmiar pliku 12.6 KB
Liczba instalacji 737
Aktualna Wersja 2.2.0
Ostatnia Aktualizacja 2019-03-13
Data Publikacji 2019-03-13
Ocena 4.17/5 Łącznie 12 Oceny
Deweloper bfday
E-mail [email protected]
Typ Płatności free
Adres URL Strony Pomocy https://github.com/bfday
Obsługiwane Języki 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"
            ]
        }
    ]
}