Inspect and view changes in Husky.io - Annotate Trello™ image attachments 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": "Husky.io - Annotate Trello™ image attachments",
"version": "1.0.1",
"description": "Draw labeled annotations over image attachments in Trello™ cards. Easy and secure. Watch a demo at http://husky.io",
"icons": {
"16": "img/husky-logo-16x16.png",
"48": "img/husky-logo-48x48.png",
"128": "img/husky-logo-128x128.png"
},
"content_scripts": [
{
"matches": [
"https://trello.com/*"
],
"js": [
"lib/jquery-1.10.2.min.js",
"js/trello_content.js"
],
"css": [
"css/trello_content.css"
]
}
],
"web_accessible_resources": [
"lib/jquery-1.10.2.min.map"
],
"page_action": {
"default_icon": {
"19": "img/husky-logo-19.png",
"38": "img/husky-logo-38.png"
},
"default_title": "enhanced by Husky.io",
"default_popup": "popup.html"
},
"background": {
"persistent": false,
"scripts": [
"js/background.js"
]
},
"permissions": [
"http://*/*",
"https://*/*",
"tabs"
],
"content_security_policy": "script-src 'self' https://trello.com; object-src 'self';"
}