This extension creates a trello card whose title that of the current tab with a shortened url of the page in the description.
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"browser_action": {
"default_icon": "img/tabs_for_trello128_128.png",
"default_popup": "tabs_for_trello.html"
},
"description": "This extension creates a trello card whose title that of the current tab with a shortened url of the page in the description.",
"manifest_version": 2,
"name": "Tabs for Trello",
"permissions": [
"cookies",
"tabs",
"storage",
"https://trello.com/1/authorize",
"https://trello.com/"
],
"update_url": "https://clients2.google.com/service/update2/crx",
"version": "1.1",
"web_accessible_resources": [
"token.html"
]
}