Examine source code of Linkinize - Bookmark Manager for Teams

Inspect and view changes in Linkinize - Bookmark Manager for Teams source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
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",
    "contextMenus"
  ],
  "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": {
    "scripts": [
      "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": "2.1.0",
  "browser_specific_settings": {
    "gecko": {
      "id": "support@linkinize.com"
    }
  }
}