TheModern.Press Workstation

TheModern.Press Workstation

Chrome Extension for TheModern.Press Web Platform.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "0.24.921",
  "name": "TheModern.Press Workstation",
  "description": "Chrome Extension for TheModern.Press Web Platform.",
  "default_locale": "en",
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "css": [
        "content.css"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_end"
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "default_icon": "img/icon-black-64.png"
  },
  "permissions": [
    "storage",
    "<all_urls>"
  ],
  "icons": {
    "16": "img/icon-black-16.png",
    "48": "img/icon-black-48.png",
    "128": "img/icon-black-128.png"
  },
  "web_accessible_resources": [
    "*"
  ],
  "manifest_version": 2
}