JSON-LD Tester

JSON-LD Tester

JSON LD Test and Viewer

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "JSON-LD Tester",
  "short_name": "JSON-LD",
  "description": "JSON LD Test and Viewer",
  "version": "1.0.10",
  "icons": {
    "128": "icon.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_icon": "icon.png",
    "default_title": "JSON LD",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ],
      "css": [
        "static/css/style.css"
      ],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    {
      "matches": [],
      "resources": [
        "/static/fonts/*"
      ]
    }
  ],
  "content_security_policy": {
    "pages": "https://*.google.com",
    "extension_pages": "script-src 'self'; object-src 'self'"
  },
  "host_permissions": [
    "<all_urls>"
  ]
}