SocialGood: Get SG crypto free

SocialGood: Get SG crypto free

Get the high-growth crypto asset (SocialGood - SG) without investing your money!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_chrome_extension_name__",
  "description": "__MSG_chrome_extension_description__",
  "version": "2.21",
  "manifest_version": 3,
  "default_locale": "en",
  "background": {
    "service_worker": "./background.js",
    "type": "module"
  },
  "permissions": [
    "storage",
    "tabs",
    "identity"
  ],
  "host_permissions": [
    "https://api-stg.socialgood-shopping.com/",
    "https://api.socialgood-shopping.com/"
  ],
  "action": {
    "default_popup": "/pages/welcome.html"
  },
  "icons": {
    "16": "/icons/chex_extension_icon_inactive_16.png",
    "32": "/icons/chex_extension_icon_inactive_32.png",
    "48": "/icons/chex_extension_icon_inactive_48.png",
    "128": "/icons/chex_extension_icon_inactive_128.png"
  },
  "options_page": "/pages/options.html",
  "content_scripts": [
    {
      "matches": [
        "*://*/*",
        "https://*/*"
      ],
      "exclude_matches": [
        "*://extension-stg.socialgood-shopping.com/*",
        "*://extension.socialgood-shopping.com/*"
      ],
      "run_at": "document_idle",
      "all_frames": false,
      "css": [
        "/styles/popup.css"
      ],
      "js": [
        "/js/popup.js"
      ]
    },
    {
      "matches": [
        "*://extension.socialgood-shopping.com/chrome/activate.html*",
        "*://extension-stg.socialgood-shopping.com/chrome/activate.html*"
      ],
      "run_at": "document_idle",
      "all_frames": false,
      "js": [
        "/js/activate.js",
        "/js/i18n-messages.js"
      ]
    },
    {
      "matches": [
        "*://extension.socialgood-shopping.com/chrome/signin.html*",
        "*://extension-stg.socialgood-shopping.com/chrome/signin.html*"
      ],
      "run_at": "document_idle",
      "all_frames": false,
      "js": [
        "/js/activate_signin.js",
        "/js/i18n-messages.js"
      ]
    },
    {
      "matches": [
        "*://extension.socialgood-shopping.com/chrome/homepage.html*",
        "*://extension-stg.socialgood-shopping.com/chrome/homepage.html*"
      ],
      "run_at": "document_idle",
      "all_frames": false,
      "js": [
        "/js/activate_homepage.js",
        "/js/i18n-messages.js"
      ]
    },
    {
      "matches": [
        "*://*/*"
      ],
      "include_globs": [
        "*://*.google.*/search?*"
      ],
      "run_at": "document_idle",
      "all_frames": false,
      "js": [
        "/js/content_script.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "matches": [
        "*://*/*",
        "https://*/*"
      ],
      "resources": [
        "/images/new/*"
      ]
    }
  ]
}