Plugin for tickets printer from Jira
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",
"manifest_version": 2,
"name": "Jira tickets printer",
"description": "Plugin for tickets printer from Jira",
"version": "1.0.7",
"browser_action": {
"default_icon": "icon.png",
"sizes": "64x64 32x32 24x24 16x16",
"default_popup": "index.html"
},
"permissions": [
"tabs",
"activeTab",
"storage",
"http://*/*",
"https://*/*"
],
"content_scripts": [
{
"matches": [
"http://*/*",
"https://*/*"
],
"js": [
"getPagesSource.js"
]
}
],
"content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'"
}