Psychedelic Tuner

Psychedelic Tuner

Tune your mood on a psychedelic wave :)

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "default_locale": "en",
  "name": "__MSG_appName__",
  "short_name": "__MSG_short_name__",
  "description": "__MSG_appDesc__",
  "author": "__MSG_author__",
  "version": "1.3.1",
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "css": [],
      "js": [
        "BSJSLib/jquery.min.js",
        "constants.js",
        "BSJSLib/BSChromeConsole.js",
        "BSJSLib/BSStringHelper.js",
        "BSJSLib/BSStorageDefaults.js",
        "BSJSLib/BSStorage.js",
        "PTStorageDefaults.js",
        "PTStorage.js",
        "BSJSLib/BSImageHelper.js",
        "BSJSLib/BSItunesSearch.js",
        "BSJSLib/BSNotification.js",
        "BSJSLib/BSDOMHelper.js",
        "BSJSLib/BSDOMEventSimulator.js",
        "BSJSLib/BSEventHelper.js",
        "BSRadios/BSRadiorockon.js",
        "BSRadios/BSWfmu.js",
        "BSRadios/BSMrg.js",
        "BSRadios/BS101ru.js",
        "BSRadios/BSPsychedelicized.js",
        "RNHelper.js",
        "content.js"
      ],
      "all_frames": true
    }
  ],
  "content_security_policy": "script-src 'self' 'unsafe-inline'; object-src 'self'",
  "background": {
    "scripts": [
      "BSJSLib/jquery.min.js",
      "constants.js",
      "BSJSLib/BSChromeConsole.js",
      "BSJSLib/BSStringHelper.js",
      "BSJSLib/BSStorageDefaults.js",
      "BSJSLib/BSStorage.js",
      "PTStorageDefaults.js",
      "PTStorage.js",
      "background.js"
    ]
  },
  "permissions": [
    "activeTab",
    "tabs",
    "storage",
    "https://itunes.apple.com/*",
    "<all_urls>"
  ],
  "web_accessible_resources": [
    "content.js"
  ],
  "options_ui": {
    "page": "options.html",
    "chrome_style": true,
    "open_in_tab": true
  },
  "browser_action": {
    "default_popup": "popup.html"
  }
}