Inspect and view changes in Beautify for Trello 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": "Beautify for Trello",
"description": "Add colors, background images and more to your Trello boards",
"homepage_url": "http://www.mindofmoses.com/blog/customize-your-trello-boards-with-beautify",
"version": "1.4",
"permissions": [
"tabs",
"https://trello.com/board/*",
"unlimitedStorage"
],
"page_action": {
"default_icon": {
"19": "images/logo_small.png",
"38": "images/logo_big.png"
},
"default_title": "Beautify for Trello"
},
"icons": {
"16": "images/app_logo_tiny.png",
"48": "images/app_logo_small.png",
"128": "images/app_logo_large.png"
},
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"web_accessible_resources": [
"images/app_logo.gif",
"images/arches.png",
"images/twitter_newbird_white.png",
"arrow.gif",
"cross.gif",
"hs.png",
"hv.png"
],
"content_scripts": [
{
"matches": [
"https://trello.com/*"
],
"js": [
"jscolor.js",
"angular.min.js",
"control_ui.js",
"inject_ui.js"
],
"css": [
"beautify_trello.css"
],
"run_at": "document_end"
}
]
}