Poor man's BJ reader

Poor man's BJ reader

Enable the extension in your chrome browser. View a BJ locked page. Click the extension icon! BOOM!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Poor man's BJ reader",
  "version": "0.4.7",
  "description": "Enable the extension in your chrome browser.  View a BJ locked page. Click the extension icon! BOOM!",
  "background_page": "background.html",
  "browser_action": {
    "name": "Manipulate DOM",
    "icons": {
      "16": "icon16.png",
      "48": "icon48.png",
      "128": "icon128.png"
    },
    "default_icon": "icon.png"
  },
  "content_scripts": [
    {
      "js": [
        "jquery-3.2.1.min.js",
        "background.js"
      ],
      "matches": [
        "https://*.bizjournals.com/*",
        "http://*.bizjournals.com/*"
      ]
    }
  ]
}