JIRA Oldest First

JIRA Oldest First

If your admin updated JIRA to default on "newest first" comments, use this extension if you want to re-set it to "oldest first".

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "JIRA Oldest First",
  "version": "0.2",
  "author": "Andreas Grill",
  "description": "Adds query string to URL to set Action Order to Ascending - use case for JIRA have Oldest First as standard.",
  "icons": {
    "48": "jira_of_ag48.png",
    "128": "jira_of_ag128.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "options_ui": {
    "page": "options.html"
  },
  "permissions": [
    "webRequest",
    "webRequestBlocking",
    "https://*/*?*",
    "storage"
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "[email protected]"
    }
  }
}