Bitbucket (+ others): absolute commit date

Bitbucket (+ others): absolute commit date

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

Merlin
Additional files are visible only to premium users

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"
      ]
    }
  ]
}