Trello Topics

Trello Topics

Add unlimited custom sticky links (Topics) to any Trello board.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Trello Topics",
  "version": "0.6",
  "description": "Add unlimited custom sticky links (Topics) to any Trello board.",
  "icons": {
    "128": "icons/topics-icon-128.png"
  },
  "page_action": {
    "default_icon": {
      "16": "icons/topics-icon-128.png",
      "32": "icons/topics-icon-128.png"
    },
    "default_title": "Trello Topics"
  },
  "author": "Justin Stewart",
  "permissions": [
    "storage",
    "https://trello.com/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://trello.com/*",
        "https://trello.com/*"
      ],
      "js": [
        "jquery.min.js",
        "trello_topics.js"
      ],
      "css": [
        "trello_topics.css"
      ]
    }
  ]
}