Soundboard

Soundboard

Connect smarter on Linkedin, Facebook, and more.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Soundboard",
  "short_name": "Soundboard",
  "version": "1.5.6",
  "description": "__MSG_extension_description__",
  "default_locale": "en",
  "icons": {
    "16": "img/icon16.png",
    "32": "img/icon32.png",
    "48": "img/icon48.png",
    "128": "img/icon128.png"
  },
  "content_scripts": [
    {
      "js": [
        "js/jquery/jquery-3.4.1.min.js",
        "js/soundboard.js"
      ],
      "matches": [
        "https://www.linkedin.com/*",
        "https://www.facebook.com/*",
        "https://app.teamzy.com/*",
        "https://go.mc.edu/manage/lookup/*",
        "https://go.mc.edu/manage/"
      ],
      "css": [
        "css/soundboard.css"
      ]
    }
  ],
  "background": {
    "scripts": [
      "js/background.js"
    ]
  },
  "browser_action": {
    "default_popup": "popup.html",
    "default_title": "__MSG_extension_default_title__"
  },
  "permissions": [
    "cookies",
    "webRequest",
    "https://share.soundboard.social/*",
    "https://www.linkedin.com/in/*",
    "https://www.facebook.com/*",
    "https://app.teamzy.com/*",
    "https://go.mc.edu/manage/lookup/*",
    "https://go.mc.edu/manage/"
  ],
  "web_accessible_resources": [
    "img/*",
    "data/*",
    "tmpl/*"
  ]
}