Bitbucket (+ others): absolute commit date
Converts dates from relative format to absolute (format presets) for Bitbucket.org, may for *.atlassian.com(jira) ...
Was ist Bitbucket (+ others): absolute commit date?
Bitbucket (+ others): absolute commit date ist eine Chrome-Erweiterung, die von bfday entwickelt wurde, und ihr Hauptmerkmal ist "Converts dates from relative format to absolute (format presets) for Bitbucket.org, may for *.atlassian.com(jira) ...".
Erweiterungsscreenshots
Bitbucket (+ others): absolute commit date-Erweiterungs-CRX-Datei herunterladen
Laden Sie Bitbucket (+ others): absolute commit date-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
Shows actual (absolute) date of commits (and other date-containing fields) for Bitbucket.org, *.atlassian.com and others domains which have Grundlegende Informationen zur Erweiterung
| Name | |
| ID | ibmpjnmlhfboaljbechlinicnlpmlgnp |
| Offizielle URL | https://chromewebstore.google.com/detail/bitbucket-+-others-absolu/ibmpjnmlhfboaljbechlinicnlpmlgnp |
| Beschreibung | Converts dates from relative format to absolute (format presets) for Bitbucket.org, may for *.atlassian.com(jira) ... |
| Dateigröße | 12.6 KB |
| Installationsanzahl | 737 |
| Aktuelle Version | 2.2.0 |
| Letztes Update | 2019-03-13 |
| Veröffentlichungsdatum | 2019-03-13 |
| Bewertung | 4.17/5 Insgesamt 12 Bewertungen |
| Entwickler | bfday |
| [email protected] | |
| Zahlungsart | free |
| Hilfeseite URL | https://github.com/bfday |
| Unterstützte Sprachen | 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"
]
}
]
} | |