No 'More' Yahoo!

No 'More' Yahoo!

Directly opens external links on Yahoo main page (http://www.yahoo.com) in new tab without clicking the 'Read More' button.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "No 'More' Yahoo!",
  "version": "0.11",
  "description": "Directly opens external links on Yahoo main page (http://www.yahoo.com) in new tab without clicking the 'Read More' button.",
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "*://www.yahoo.com/"
      ],
      "js": [
        "extract.js"
      ]
    }
  ]
}