Full-Screen agile board mode for Jira

Full-Screen agile board mode for Jira

This extension improves the readability of the agile boards of Atlassian Jira. Works perfectly with both the Scrum and the Kanban…

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "version": "1.20.622",
  "name": "Full-Screen agile board mode for Jira",
  "author": "Rui Costa",
  "homepage_url": "https://github.com/rui-costa/jira_fullscreen_board",
  "content_scripts": [
    {
      "matches": [
        "https://*.atlassian.net/secure/RapidBoard.jspa*"
      ],
      "run_at": "document_end",
      "js": [
        "extension.js"
      ]
    }
  ],
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  }
}