Linkinize - Bookmark Manager for Teams

Linkinize - Bookmark Manager for Teams

Bookmark Manager for Teams

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "icons": {
    "16": "icons/icon-16x16.png",
    "48": "icons/icon-48x48.png",
    "128": "icons/icon-128x128.png"
  },
  "permissions": [
    "storage",
    "tabs",
    "activeTab",
    "alarms"
  ],
  "action": {
    "default_popup": "www/index.html",
    "default_title": "Linkinize - Bookmark Manager for Teams"
  },
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "windows": "Ctrl+Shift+L",
        "mac": "Command+Shift+L",
        "chromeos": "Ctrl+Shift+L",
        "linux": "Ctrl+Shift+L"
      }
    }
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://app.linkinize.com/*"
      ],
      "js": [
        "auth.js"
      ]
    },
    {
      "matches": [
        "https://app.linkinize.com/*"
      ],
      "js": [
        "app-sync.js"
      ]
    }
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self';"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "*"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ],
  "name": "Linkinize - Bookmark Manager for Teams",
  "short_name": "Linkinize - Bookmark Manager for Teams",
  "description": "Bookmark Manager for Teams",
  "version": "1.0.1",
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}