MSTC Signer App

MSTC Signer App

MSTC Signer Chrome Extension

Merlin
Additional files are visible only to premium users

manifest.json


{
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "default_icon": "favicon.png",
    "default_popup": "popup.html",
    "default_title": "MSTC Signer App"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "content.js"
      ],
      "matches": [
        "http://www.mstcecommerce.com/*",
        "https://www.mstcecommerce.com/*",
        "http://www.mstcauction.com/*",
        "https://www.mstcauction.com/*"
      ]
    }
  ],
  "description": "MSTC Signer Chrome Extension",
  "externally_connectable": {
    "matches": [
      "http://www.mstcecommerce.com/*",
      "https://www.mstcecommerce.com/*",
      "http://www.mstcauction.com/*",
      "https://www.mstcauction.com/*"
    ]
  },
  "manifest_version": 2,
  "name": "MSTC Signer App",
  "permissions": [
    "nativeMessaging",
    "activeTab"
  ],
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "2.2"
}