Developer Notes

Developer Notes

See and post notes on developer documentation.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Developer Notes",
  "version": "1.0.4",
  "description": "See and post notes on developer documentation.",
  "short_name": "Dev Notes",
  "icons": {
    "16": "icons/icon16.png",
    "32": "icons/icon32.png",
    "48": "icons/icon48.png",
    "64": "icons/icon64.png",
    "96": "icons/icon96.png",
    "128": "icons/icon128.png"
  },
  "action": {
    "default_popup": "content/html/upgrade_popup.html"
  },
  "permissions": [],
  "host_permissions": [],
  "background": {
    "service_worker": "content/js/worker.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://docs.unity3d.com/*",
        "https://docs.unity.com/*",
        "https://docs-multiplayer.unity3d.com/*",
        "https://docs.unrealengine.com/*",
        "https://www.audiokinetic.com/*"
      ],
      "js": [
        "content/js/content.js"
      ],
      "run_at": "document_idle"
    }
  ],
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAm0W2b1J6g2lMYyt0otuy+7mFsyhNG795S8cs1L50W9bEPLRw6vEqYeCpc4/bvo/xccI9RzGbWy4UY820dinlQekwfH1woYOdBHmErBn5NYNsgCxTeY7ncLQRzn9LcMYW06qurRiKFZvgx6mLvvDPloC/KTIxwJvgHPF477iheju80znvNmOt5wGatq/ZB2TdeZcOALYLnwlsmsaxZVxxfnRmy0cbLHsgOruVeKU2YHcU74IECIk7DXdy4MGnoPDwSLAjDomh3j2AjSpGHmaSBVyrfK2R/L/rEC0v/8h3vAahuzIYgwHYOqU+tfQ5bD6tJ4CZE5Dff+o5mMs1VvI5dQIDAQAB"
}