Labor

Labor

Labor Extension

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Labor",
  "version": "1.1.5",
  "description": "Labor Extension",
  "permissions": [
    "declarativeContent",
    "storage",
    "tabs",
    "activeTab"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "images/ico_16.png",
      "32": "images/ico_32.png",
      "48": "images/ico_48.png",
      "128": "images/ico_128.png"
    },
    "default_title": "Labor"
  },
  "icons": {
    "16": "images/ico_16.png",
    "32": "images/ico_32.png",
    "48": "images/ico_48.png",
    "128": "images/ico_128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://trello.com/b/*"
      ],
      "js": [
        "trello_card_player.js"
      ],
      "css": [
        "trello_card_player.css"
      ]
    }
  ],
  "manifest_version": 2
}