Glider Screen

Glider Screen

This extension allows you to share full screen of your computer privately and securely. It can also track the browser tab activities of the user.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "Glider Screen",
  "author": "GLIDER",
  "version": "2.0",
  "manifest_version": 2,
  "homepage_url": "https://glider.ai/",
  "content_scripts": [
    {
      "matches": [
        "http://localhost:3000/*",
        "https://*.snapwiz.com/*",
        "https://*.glider.ai/*",
        "https://*.snapwiz.net/*"
      ],
      "js": [
        "content-script.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background-script.js"
    ]
  },
  "icons": {
    "16": "logo16.png",
    "32": "logo32.png",
    "48": "logo48.png",
    "128": "logo128.png"
  },
  "permissions": [
    "tabs",
    "activeTab",
    "contextMenus",
    "<all_urls>",
    "http://localhost:3000/*",
    "https://*.snapwiz.com/*",
    "https://*.glider.ai/*"
  ],
  "web_accessible_resources": [
    "icon.png"
  ]
}