SMG Extension

SMG Extension

SMG right click context menu

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "SMG Extension",
  "description": "SMG right click context menu",
  "version": "1.1",
  "default_locale": "en",
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content-script.js"
      ]
    }
  ],
  "applications": {
    "gecko": {
      "id": "[email protected]",
      "strict_min_version": "50.0"
    }
  },
  "permissions": [
    "contextMenus",
    "activeTab",
    "nativeMessaging",
    "tabs",
    "<all_urls>"
  ]
}