Truly for Chrome

Truly for Chrome

Truly

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Truly for Chrome",
  "short_name": "Truly",
  "manifest_version": 3,
  "description": "Truly",
  "version": "3.1.5",
  "icons": {
    "16": "icons/icon-16x16.png",
    "48": "icons/icon-48x48.png",
    "128": "icons/icon-128x128.png"
  },
  "background": {
    "service_worker": "js/background.js",
    "type": "module"
  },
  "action": {
    "default_icon": {
      "16": "icons/icon-16x16.png",
      "19": "icons/icon-19x19.png",
      "48": "icons/icon-48x48.png",
      "128": "icons/icon-128x128.png"
    },
    "default_title": "Truly"
  },
  "permissions": [
    "tabs",
    "windows",
    "cookies",
    "management"
  ],
  "host_permissions": [
    "https://local-dev.trulywireless.com/*",
    "https://staging.trulywireless.com/*",
    "https://dev.trulywireless.com/*",
    "https://trulywireless.com/*",
    "http://localhost:3000/*",
    "https://*.truly.co/*"
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self';"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "js/content.js"
      ],
      "css": [
        "style/style.css"
      ],
      "all_frames": true
    }
  ],
  "externally_connectable": {
    "matches": [
      "https://*.truly.co/*",
      "https://*.trulywireless.com/*"
    ]
  },
  "devtools_page": "devtools/devtools.html",
  "web_accessible_resources": [
    {
      "resources": [
        "images/**"
      ],
      "matches": [
        "*://*/*"
      ]
    },
    {
      "resources": [
        "style/fonts/**"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ]
}