UF tools

UF tools

Auto highlights new posts on the Userfriendly message board.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "UF tools",
  "version": "1.2.12",
  "description": "Auto highlights new posts on the Userfriendly message board.",
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "http://ars.userfriendly.org/*"
      ],
      "js": [
        "contentscript.js"
      ],
      "css": [
        "mystyles.css"
      ]
    }
  ],
  "permissions": [
    "contextMenus"
  ],
  "options_page": "options.html",
  "icons": {
    "48": "dp48.png",
    "128": "dp128.png"
  },
  "web_accessible_resources": [
    "plus.png",
    "minus.png",
    "blank.png",
    "bar.png",
    "jscolor.js",
    "hs.png",
    "hv.png",
    "cross.gif",
    "arrow.gif"
  ]
}