Webtop.com Browser Extension

Webtop.com Browser Extension

Take advantage of the Webtop Browser Extension with Secure Vaults. Quick-import links, bookmarks and web apps to your Webtop.com…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Webtop.com Browser Extension",
  "version": "2.0.0",
  "manifest_version": 3,
  "icons": {
    "16": "assets/icons/icon16.png",
    "48": "assets/icons/icon48.png",
    "128": "assets/icons/icon128.png"
  },
  "permissions": [
    "cookies",
    "bookmarks",
    "history",
    "tabs",
    "storage",
    "clipboardWrite",
    "scripting",
    "gcm"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "action": {
    "default_icon": {
      "19": "assets/icons/icon19.png",
      "38": "assets/icons/icon38.png"
    },
    "default_title": "Webtop.com",
    "default_popup": "popup.html"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "content.js",
        "inputPasswordSelectDropdown.js",
        "passwordCreateSuggestionContent.js"
      ],
      "all_frames": true
    }
  ],
  "externally_connectable": {
    "matches": [
      "*://*.desktop.com/*",
      "*://*.webtop.com/*"
    ]
  },
  "web_accessible_resources": [
    {
      "resources": [
        "assets/fonts/*.woff2"
      ],
      "matches": [
        "<all_urls>"
      ]
    },
    {
      "resources": [
        "passwordSelect.html"
      ],
      "matches": [
        "<all_urls>"
      ]
    },
    {
      "resources": [
        "passwordCreateSuggestion.html"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}