SimCompaniesHub

SimCompaniesHub

Simple SimCompanies hub and easy JSON API data access. Data will be saved at local storage for https://sc.nouseforname.de as well.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "SimCompaniesHub",
  "description": "Simple SimCompanies hub and easy JSON API data access. Data will be saved at local storage for https://sc.nouseforname.de as well.",
  "version": "0.11",
  "icons": {
    "16": "img/icon16.png",
    "32": "img/icon32.png",
    "48": "img/icon48.png",
    "128": "img/icon128.png"
  },
  "permissions": [
    "https://www.simcompanies.com/",
    "storage",
    "contextMenus",
    "notifications",
    "clipboardWrite"
  ],
  "browser_action": {
    "default_icon": "img/icon16.png",
    "default_popup": "popup.html"
  },
  "background": {
    "scripts": [
      "js/jquery-3.5.1.js",
      "js/background.js"
    ],
    "persistent": false
  },
  "options_ui": {
    "page": "options.html",
    "open_in_tab": false
  },
  "content_scripts": [
    {
      "matches": [
        "http://127.0.0.1/*",
        "https://sc.nouseforname.de/*"
      ],
      "js": [
        "js/jquery-3.5.1.js",
        "js/content.js"
      ],
      "run_at": "document_end"
    }
  ]
}