TrustBuilder Backup

TrustBuilder Backup

Keeps the TrustBuilder authentication tools up and running in your browser.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "homepage_url": "https://www.trustbuilder.com",
  "name": "TrustBuilder Backup",
  "short_name": "TrustBuilder Backup",
  "description": "Keeps the TrustBuilder authentication tools up and running in your browser.",
  "action": {},
  "icons": {
    "16": "resources/icon_16.png",
    "24": "resources/icon_24.png",
    "48": "resources/icon_48.png",
    "96": "resources/icon_96.png",
    "128": "resources/icon_128.png"
  },
  "default_locale": "en",
  "version": "3.2.0",
  "version_name": "3.2.0",
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "unlimitedStorage",
    "storage",
    "activeTab",
    "tabs"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "core/namespace.js",
        "core/config.js",
        "vendors/jquery.min.js",
        "detectors/selfcare.js",
        "indoc/browser-functions.js",
        "indoc/reload.js",
        "indoc/restore-local-storage.js",
        "indoc/runner.js"
      ],
      "run_at": "document_end",
      "all_frames": true
    }
  ]
}