This extension disables the lightbox in Jira for Slickdeals and makes the images open in a new tab.
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"content_scripts": [
{
"js": [
"script.js"
],
"matches": [
"*://jira.sdhq.local/*"
]
}
],
"description": "",
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
},
"manifest_version": 2,
"web_accessible_resources": [
"jira.js"
],
"name": "Slickdeals JIRA Anti-Lightbox",
"permissions": [
"*://jira.sdhq.local/*"
],
"short_name": "SD JIRA Anti-lightbox",
"update_url": "https://clients2.google.com/service/update2/crx",
"version": "1.0"
}