Levantr

Levantr

An extension to send links from the browser to your Levantr account

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "version": "0.0.1",
  "short_name": "Levantr",
  "name": "Levantr",
  "description": "An extension to send links from the browser to your Levantr account",
  "action": {
    "default_icon": "levantrFavicon-96.png",
    "default_title": "Levantr",
    "default_popup": "popup.html"
  },
  "icons": {
    "48": "levantrFavicon-48.png",
    "96": "levantrFavicon-96.png"
  },
  "background": {
    "service_worker": "background.bundle.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "contentScript.bundle.js"
      ]
    }
  ],
  "options_page": "options.html",
  "permissions": [
    "storage",
    "tabs"
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'",
    "sandbox": "sandbox allow-scripts; script-src 'self' 'https://apis.google.com/' 'https://www.gstatic.com/' 'https://*.firebaseio.com' 'https://www.googleapis.com' 'https://ajax.googleapis.com'; object-src 'self'"
  }
}