Harp Music Laura Bailey

Harp Music Laura Bailey

Replaces the text 'Laura Bailey' with '*harp music* Laura Bailey'. When clicked, harp music will play.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Harp Music Laura Bailey",
  "version": "1.2.2",
  "description": "Replaces the text 'Laura Bailey' with '*harp music* Laura Bailey'. When clicked, harp music will play.",
  "author": "Callum Todd",
  "icons": {
    "64": "icons/icon64.png",
    "128": "icons/icon128.png",
    "300": "icons/icon300.png"
  },
  "options_page": "options.html",
  "options_ui": {
    "page": "options.html",
    "chrome_style": true
  },
  "permissions": [
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "wordreplace.js"
      ],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    "harp.ogg"
  ]
}