SGM+

SGM+

Extra features for SGM Community Forum (www.seriousgmod.com)

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_appName__",
  "description": "__MSG_appDescription__",
  "version": "2.1.2",
  "short_name": "__MSG_appShortName__",
  "author": "Chai",
  "manifest_version": 2,
  "default_locale": "en",
  "icons": {
    "16": "images/icon-16.png",
    "128": "images/icon-128.png"
  },
  "web_accessible_resources": [
    "images/*"
  ],
  "background": {
    "scripts": [
      "scripts/background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.seriousgmod.com/*"
      ],
      "css": [
        "styles/style.css"
      ],
      "run_at": "document_start",
      "all_frames": false
    },
    {
      "matches": [
        "*://*.seriousgmod.com/*"
      ],
      "js": [
        "scripts/steamBadge.js"
      ],
      "run_at": "document_end",
      "all_frames": false
    },
    {
      "matches": [
        "*://*.seriousgmod.com/"
      ],
      "js": [
        "scripts/shoutboxHeightHandle.js"
      ],
      "run_at": "document_start",
      "all_frames": false
    },
    {
      "matches": [
        "*://*.seriousgmod.com/chat/*"
      ],
      "js": [
        "scripts/shoutboxSidebarMod.js"
      ],
      "run_at": "document_start",
      "all_frames": false
    },
    {
      "matches": [
        "*://*.seriousgmod.com/",
        "*://*.seriousgmod.com/chat/*"
      ],
      "js": [
        "scripts/shoutboxGlobalMods.js"
      ],
      "run_at": "document_start",
      "all_frames": false
    }
  ],
  "permissions": [
    "storage",
    "https://www.seriousgmod.com/",
    "https://sgmod.ext.steam.zikeji.com/"
  ]
}