BETTER SEC EDGAR FOR CHROME USER

BETTER SEC EDGAR FOR CHROME USER

Visited links in SEC EDGAR will have blue background color. And links will be opened in a new tab.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "BETTER SEC EDGAR FOR CHROME USER",
  "version": "0.1",
  "manifest_version": 2,
  "description": "Visited links in SEC EDGAR will have blue background color. And links will be opened in a new tab.",
  "homepage_url": "http:/www.flymemory.com",
  "author": "Tim",
  "icons": {
    "16": "bettersec.png",
    "48": "bettersec.png",
    "128": "bettersec.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.sec.gov/*",
        "*://sec.gov/*"
      ],
      "css": [
        "sec.css"
      ],
      "js": [
        "jquery-1.11.2.min.js",
        "sec.js"
      ],
      "run_at": "document_start"
    }
  ]
}