SEC Live

SEC Live

One-click access to any company's SEC filings.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "SEC Live",
  "short_name": "seclive",
  "version": "1.0.0",
  "description": "One-click access to any company's SEC filings.",
  "icons": {
    "16": "img/icon_16.png",
    "48": "img/icon_48.png",
    "128": "img/icon_128.png"
  },
  "permissions": [
    "contextMenus",
    "clipboardRead"
  ],
  "browser_action": {
    "default_title": "Look up company filings in SEC Live",
    "default_icon": {
      "19": "img/icon_16.png"
    }
  },
  "background": {
    "scripts": [
      "scripts/background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "scripts/contentscript.js"
      ],
      "run_at": "document_idle",
      "all_frames": false
    }
  ]
}