Inspect and view changes in Jira Thumbnail source codes across current and past versions
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 Thumbnail",
"version": "1.0.2",
"description": "This extension adds thumbnails to tasks in your Jira Agile/Kanban board.",
"author": "Vladislav Dotsenko | speedway.artist@gmail.com",
"icons": {
"128": "icon.png"
},
"permissions": [
"storage",
"activeTab"
],
"content_scripts": [
{
"matches": [
"http://*/*",
"https://*/*"
],
"js": [
"main.js"
]
}
],
"background": {
"scripts": [
"background.js"
]
},
"web_accessible_resources": [
"img_preview_style.css"
],
"browser_action": {
"default_title": "Click to open options tab.",
"default_icon": "icon.png"
},
"options_ui": {
"page": "options.html",
"open_in_tab": false
}
}