Fuse Flow

Fuse Flow

Knowledge in the flow of work

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Fuse Flow",
  "description": "Knowledge in the flow of work",
  "author": "Fuse Universal",
  "version": "1.01.0",
  "icons": {
    "20": "images/fuseflow-20.png",
    "25": "images/fuseflow-25.png",
    "40": "images/fuseflow-40.png",
    "48": "images/fuseflow-48.png"
  },
  "host_permissions": [
    "*://*.fuseuniversal.com"
  ],
  "permissions": [
    "contextMenus",
    "activeTab",
    "storage",
    "cookies",
    "*://*.fuseuniversal.com/*"
  ],
  "optional_permissions": [
    "*://*/*"
  ],
  "browser_action": {
    "default_icon": {
      "20": "images/fuseflow-20.png",
      "40": "images/fuseflow-40.png",
      "128": "images/fuseflow-128.png"
    },
    "default_title": "Fuse Flow",
    "default_popup": "html/popup.html"
  },
  "content_scripts": [
    {
      "all_frames": false,
      "js": [
        "js/interaction.js"
      ],
      "matches": [
        "*://*/*"
      ],
      "run_at": "document_start"
    },
    {
      "all_frames": false,
      "js": [
        "js/content.js"
      ],
      "matches": [
        "*://*/*"
      ],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    "images/*.png",
    "translation/*.json"
  ],
  "options_ui": "html/options.html",
  "options_page": "html/options.html",
  "background": {
    "scripts": [
      "js/background.js"
    ],
    "persistent": false
  },
  "content_security_policy": "script-src 'self' https://cdn.mxpnl.com/libs/mixpanel-2-latest.min.js; object-src 'self'"
}