TrustBox Injector

TrustBox Injector

A chrome extension to preview any TrustBox on your website

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "TrustBox Injector",
  "description": "A chrome extension to preview any TrustBox on your website",
  "version": "2.14.0",
  "browser_action": {
    "default_icon": "images/logo-icon.png",
    "default_title": "TrustBox Injector"
  },
  "web_accessible_resources": [
    "popup.html"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "css": [
        "core.css"
      ],
      "js": [
        "core.js"
      ],
      "run_at": "document_end",
      "all_frames": true
    }
  ],
  "permissions": [
    "activeTab",
    "*://*/*"
  ],
  "background": {
    "scripts": [
      "background.js",
      "core.js"
    ],
    "persistent": false
  }
}