Inspect and view changes in Sub-task creator 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": "Sub-task creator",
"description": "Bulk creation of Jira sub-tasks",
"version": "1.2.0",
"browser_action": {
"default_icon": "icons/icon16.png",
"default_popup": "popup.html"
},
"icons": {
"16": "icons/icon16.png",
"128": "icons/icon128.png"
},
"background": {
"scripts": []
},
"permissions": [
"storage",
"tabs",
"notifications"
],
"optional_permissions": [
"http://*/*",
"https://*/*"
],
"content_security_policy": "script-src 'self' https://ajax.googleapis.com https://ssl.google-analytics.com 'unsafe-eval'; object-src 'self'",
"options_page": "options.html"
}