Trello Card Numbers - by Flyclops

Trello Card Numbers - by Flyclops

Puts Trello's card numbers front and center

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Trello Card Numbers - by Flyclops",
  "version": "0.1.7",
  "manifest_version": 2,
  "description": "Puts Trello's card numbers front and center",
  "homepage_url": "http://flyclops.com",
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "default_locale": "en",
  "permissions": [
    "https://trello.com/b/*",
    "https://trello.com/c/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://trello.com/b/*",
        "https://trello.com/c/*"
      ],
      "css": [
        "src/inject/inject.css"
      ]
    },
    {
      "matches": [
        "https://trello.com/b/*",
        "https://trello.com/c/*"
      ],
      "js": [
        "js/jquery/jquery.min.js",
        "src/inject/inject.js"
      ]
    }
  ]
}