WebGL Texture Monitor

WebGL Texture Monitor

WebGL GUI texture monitoring tool for web content

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "WebGL Texture Monitor",
  "version": "1.0.0",
  "description": "WebGL GUI texture monitoring tool for web content",
  "author": "Goodboy Digital",
  "permissions": [
    "activeTab"
  ],
  "page_action": {
    "default_icon": "icons/icon-off.png",
    "default_title": "Inspect with TextureMonitor"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  },
  "content_scripts": [
    {
      "matches": [
        "file://*/*",
        "http://*/*",
        "https://*/*"
      ],
      "all_frames": true,
      "run_at": "document_start",
      "js": [
        "contentScript.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "TextureMonitor.js",
    "TextureMonitor.css"
  ]
}