This extension makes certain Trello forms more readable and therefore useful.
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": "Styling Trello",
"description": "This extension makes certain Trello forms more readable and therefore useful.",
"author": "Kainoto",
"icons": {
"16": "icon-16.png",
"32": "icon-32.png",
"48": "icon-48.png",
"64": "icon-64.png",
"128": "icon-128.png"
},
"version": "1.1",
"permissions": [
"activeTab"
],
"background": {
"persistent": false,
"scripts": [
"bg.js"
],
"all_frames": true
},
"content_scripts": [
{
"matches": [
"https://*.trello.com/*"
],
"css": [
"tstyle.css"
],
"js": [
"tstyle.js"
]
}
],
"browser_action": {
"default_icon": "icon.png",
"default_popup": "popup.html",
"default_title": "Styling (making readable) Trello"
}
}