New Lantern – Multi-monitor Workspace

This extension saves your New Lantern monitor configuration.
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "New Lantern – Multi-monitor Workspace",
  "description": "This extension saves your New Lantern monitor configuration.",
  "version": "3.4.3",
  "manifest_version": 3,
  "background": {
    "service_worker": "js/background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.oldlantern.dev/*",
        "https://*.newlantern.ai/*",
        "http://localhost:3000/*"
      ],
      "js": [
        "js/content.js"
      ]
    }
  ],
  "permissions": [
    "storage",
    "activeTab",
    "scripting",
    "tabs",
    "system.display"
  ],
  "host_permissions": [
    "https://*.oldlantern.dev/*",
    "https://*.newlantern.ai/*",
    "http://localhost:3000/*"
  ],
  "externally_connectable": {
    "ids": [
      "*"
    ],
    "matches": [
      "https://*.oldlantern.dev/*",
      "https://*.newlantern.ai/*",
      "http://localhost:3000/*"
    ],
    "accepts_tls_channel_id": false
  },
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "images/nl-logo16.png",
      "32": "images/nl-logo32.png",
      "48": "images/nl-logo48.png",
      "128": "images/nl-logo128.png"
    }
  },
  "icons": {
    "16": "images/nl-logo16.png",
    "32": "images/nl-logo32.png",
    "48": "images/nl-logo48.png",
    "128": "images/nl-logo128.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "*"
      ],
      "matches": [
        "<all_urls>"
      ],
      "use_dynamic_url": true
    }
  ]
}