Reddit Music Helper

Reddit Music Helper

This extension will open all SoundCloud links (and others, dependent on how you set the options) anywhere on Reddit (like r/trap).

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "background": {
    "page": "background.html"
  },
  "browser_action": {
    "default_icon": "img/icon19.png",
    "default_title": "Reddit Music Helper"
  },
  "content_scripts": [
    {
      "js": [
        "jquery-1.6.4.min.js",
        "shortcut.js",
        "contentScript.js"
      ],
      "matches": [
        "http://*.reddit.com/*",
        "https://*.reddit.com/*"
      ],
      "run_at": "document_start"
    }
  ],
  "description": "This extension will open all SoundCloud links (and others, dependent on how you set the options) anywhere on Reddit (like r/trap).",
  "icons": {
    "128": "img/icon128.png"
  },
  "name": "Reddit Music Helper",
  "options_page": "options.html",
  "permissions": [
    "tabs",
    "history",
    "unlimitedStorage",
    "http://*.reddit.com/*",
    "https://*.reddit.com/*",
    "http://*.youtube.com/*",
    "https://*.youtube.com/*",
    "http://*.youtu.be/*",
    "https://*.youtu.be/*"
  ],
  "update_url": "http://clients2.google.com/service/update2/crx",
  "version": "1.1.0"
}