Show Github PR Review Approval status in the cards on a Jira board
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"name": "PR Status",
"description": "Show Github PR Review Approval status in the cards on a Jira board",
"version": "1.0.16",
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"browser_action": {
"default_icon": "icons/icon-active.png",
"default_title": "PR Status"
},
"content_scripts": [
{
"matches": [
"https://*.atlassian.net/secure/RapidBoard.jspa?*",
"https://*.atlassian.net/jira/software/*",
"https://*.jira.com/secure/RapidBoard.jspa?*"
],
"js": [
"contentscript.js"
],
"css": [
"contentstyle.css"
]
}
],
"icons": {
"128": "icons/icon-active.png",
"640": "icons/logo-640.png"
},
"options_ui": {
"page": "options/index.html",
"open_in_tab": true
},
"web_accessible_resources": [
"icons/icon-active.png",
"icons/icon-inactive.png",
"icons/icon-local.png",
"icons/logo-640.png"
],
"manifest_version": 2,
"permissions": [
"activeTab",
"tabs",
"https://*.atlassian.net/*",
"https://*.jira.com/*",
"https://api.github.com/*"
]
}