Blueprint Viewer

Blueprint Viewer

Read .bp files in a GIT repository

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Blueprint Viewer",
  "description": "Read .bp files in a GIT repository",
  "version": "0.3",
  "permissions": [
    "https://github.com/*",
    "https://bitbucket.org/*",
    "https://gitlab.com/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://github.com/*",
        "https://bitbucket.org/*",
        "https://gitlab.com/*"
      ],
      "js": [
        "jquery-3.6.3.min.js",
        "general.js"
      ],
      "run_at": "document_end"
    }
  ],
  "icons": {
    "48": "icon.png"
  },
  "manifest_version": 3,
  "web_accessible_resources": [
    {
      "matches": [
        "https://github.com/*",
        "https://bitbucket.org/*",
        "https://gitlab.com/*"
      ],
      "resources": [
        "viewer.html",
        "bue-render/render.js"
      ]
    }
  ]
}