Chrome plugin to manage daily standup meeting with 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
{
"update_url": "https://clients2.google.com/service/update2/crx",
"author": "Elhay a",
"name": "Jira daily standup",
"description": "Chrome plugin to manage daily standup meeting with Jira board",
"version": "1.1.7",
"background": {},
"permissions": [
"storage",
"https://*.atlassian.net/*"
],
"content_scripts": [
{
"matches": [
"https://*.atlassian.net/*"
],
"js": [
"jquery-latest.min.js",
"board.js"
],
"css": [
"board.css"
]
}
],
"web_accessible_resources": [
"img/play.svg",
"img/pause.svg"
],
"content_security_policy": "script-src 'self' 'unsafe-eval' https://buttons.github.io; object-src 'self'",
"browser_action": {
"default_icon": "img/logo.png",
"default_popup": "index.html"
},
"manifest_version": 2
}