pressreader.com stripper

pressreader.com stripper

This extension strips odd underlines on pressreader.com pages.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "pressreader.com stripper",
  "version": "0.1",
  "manifest_version": 2,
  "author": "Max Kolmogorov <[email protected]>",
  "minimum_chrome_version": "50",
  "incognito": "not_allowed",
  "description": "This extension strips odd underlines on pressreader.com pages.",
  "icons": {
    "16": "images/icon-16.png",
    "19": "images/icon-19.png",
    "38": "images/icon-38.png",
    "48": "images/icon-48.png",
    "96": "images/icon-96.png",
    "128": "images/icon-128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://pressreader.com/*",
        "*://www.pressreader.com/*"
      ],
      "js": [
        "jquery.js",
        "content.js"
      ],
      "run_at": "document_end",
      "all_frames": true
    }
  ],
  "permissions": [
    "*://*/*",
    "background",
    "notifications",
    "tabs",
    "activeTab",
    "storage",
    "webNavigation",
    "webRequest"
  ],
  "browser_action": {
    "default_icon": {
      "19": "images/icon-19.png",
      "38": "images/icon-38.png"
    },
    "default_title": "Influencing notifier"
  },
  "web_accessible_resources": [
    "images/icon-48.png"
  ]
}