Gaijin Content Creators Popup

Gaijin Content Creators Popup

Adds a Content Creators popup to the Gaijin Store page

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Gaijin Content Creators Popup",
  "version": "1.0.440",
  "description": "Adds a Content Creators popup to the Gaijin Store page",
  "action": {
    "default_icon": {
      "16": "images/icon16.png",
      "48": "images/icon48.png",
      "128": "images/icon128.png"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "https://store.gaijin.net/*"
      ],
      "js": [
        "creators.js",
        "content_script.js"
      ],
      "css": [
        "style.css"
      ]
    }
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'; img-src 'self' https://i.imgur.com;"
  }
}