Play Text

Play Text

Highlight the text the mouse is hovering over

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "0.1",
  "manifest_version": 2,
  "name": "Play Text",
  "description": "Highlight the text the mouse is hovering over",
  "permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "resources/javascript/javascript.js"
      ],
      "css": [
        "resources/stylesheet/stylesheet.css"
      ]
    }
  ],
  "icons": {
    "16": "resources/pictures/big.png",
    "48": "resources/pictures/bigger.png",
    "128": "resources/pictures/biggest.png"
  }
}