Sortello Chrome Extension

Sortello Chrome Extension

This extension enables integrated access to Sortello from Trello boards

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Sortello Chrome Extension",
  "description": "This extension enables integrated access to Sortello from Trello boards",
  "version": "0.1.3",
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "browser_action": {
    "default_icon": "icon.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "*://trello.com/*"
      ],
      "js": [
        "getLists.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "icon.png"
  ],
  "permissions": [
    "*://trello.com/b/*",
    "activeTab",
    "tabs",
    "webNavigation",
    "alarms"
  ]
}