Undzone Extension

Undzone Extension

Remove dzone header when accessing a site from rss feed.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Undzone Extension",
  "version": "0.6",
  "manifest_version": 2,
  "description": "Remove dzone header when accessing a site from rss feed.",
  "icons": {
    "16": "RSS-icon-16.png",
    "48": "RSS-icon-48.png",
    "128": "RSS-icon.png"
  },
  "permissions": [
    "tabs",
    "http://*/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://www.dzone.com/links/*"
      ],
      "js": [
        "contentscript.js"
      ]
    }
  ]
}