Flow browser extension

Flow browser extension

View translations easily as you browse the web.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "version": "2.1.2",
  "short_name": "Flow",
  "name": "Flow browser extension",
  "description": "View translations easily as you browse the web.",
  "action": {
    "default_popup": "index.html"
  },
  "icons": {
    "16": "assets/images/flow-icon-16.png",
    "48": "assets/images/flow-icon-48.png",
    "128": "assets/images/flow-icon-128.png"
  },
  "permissions": [
    "storage",
    "identity"
  ],
  "host_permissions": [
    "https://id.lengoo.com/oauth2/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "/static/js/content.bundle.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "/static/css/index.css"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ],
  "background": {
    "service_worker": "/static/js/background.bundle.js"
  },
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}