inTrello

inTrello

Organize all your candidates from LinkedIn in 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": "__MSG_extName__",
  "version": "1.6.1",
  "description": "__MSG_extDesctiption__",
  "default_locale": "en",
  "permissions": [
    "activeTab",
    "declarativeContent",
    "https://www.linkedin.com/in/*",
    "https://trello.com/add-card?*"
  ],
  "background": {
    "scripts": [
      "js/eventListener.js"
    ],
    "persistent": true
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.linkedin.com/in/*"
      ],
      "js": [
        "lib/jquery-3.3.1.min.js",
        "lib/trelloClient.js",
        "js/cookieManager.js",
        "js/inTrello.js"
      ]
    },
    {
      "matches": [
        "https://trello.com/add-card?*"
      ],
      "js": [
        "lib/jquery-3.3.1.min.js",
        "js/trelloAddCardStyle.js"
      ]
    }
  ],
  "page_action": {
    "default_icon": "img/icon_48.png"
  },
  "icons": {
    "16": "img/icon_16.png",
    "19": "img/icon_19.png",
    "32": "img/icon_32.png",
    "38": "img/icon_38.png",
    "48": "img/icon_48.png",
    "64": "img/icon_64.png",
    "128": "img/icon_128.png"
  }
}