Relaxound

Relaxound

Relaxound - background sound generator for work and relaxation

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Relaxound",
  "short_name": "Relaxound",
  "description": "Relaxound - background sound generator for work and relaxation",
  "version": "1.5",
  "author": "Nikolay Oleynikov",
  "permissions": [
    "https://relaxound.kolyunya.me/",
    "cookies",
    "tabs"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://relaxound.kolyunya.me/*"
      ],
      "js": [
        "scripts/jquery.min.js",
        "scripts/content.js"
      ],
      "run_at": "document_start"
    }
  ],
  "background": {
    "scripts": [
      "scripts/jquery.min.js",
      "scripts/background.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "default_icon": "images/sound-enabled.png"
  },
  "icons": {
    "16": "images/icon-16.png",
    "48": "images/icon-48.png",
    "128": "images/icon-128.png"
  }
}