Trello features

Trello features

Trello features

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 features",
  "description": "Trello features",
  "version": "0.2",
  "browser_action": {
    "default_icon": "images/icon.png",
    "default_popup": "popup.html",
    "default_title": "Trello features"
  },
  "icons": {
    "16": "images/icon.png",
    "48": "images/icon.png",
    "128": "images/icon.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://trello.com/*"
      ],
      "css": [
        "css/cs_styles.css"
      ],
      "js": [
        "libs/jquery-1.12.0.min.js",
        "scripts/actions.js",
        "scripts/tools.js",
        "scripts/cs_bootstrap.js"
      ],
      "run_at": "document_end"
    }
  ],
  "background": {
    "scripts": [
      "libs/jquery-1.12.0.min.js",
      "scripts/actions.js",
      "scripts/tools.js",
      "scripts/bs_main.js"
    ]
  },
  "permissions": [
    "activeTab",
    "notifications",
    "storage",
    "<all_urls>",
    "tabs",
    "contextMenus"
  ],
  "web_accessible_resources": [
    "css/cs_styles.css"
  ]
}