Flaunt

Flaunt

Flaunt

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Flaunt",
  "short_name": "Flaunt",
  "description": "Flaunt",
  "version": "1.4",
  "background": {
    "scripts": [
      "lib/jquery-3.1.1.min.js",
      "js/common.js",
      "config.js",
      "js/controller.js",
      "js/screen-grab.js",
      "js/background.js"
    ]
  },
  "browser_action": {
    "default_title": "Flaunt",
    "default_popup": "popup.html",
    "default_icon": "img/icon-disabled-128x128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "css": [
        "css/inject.css"
      ],
      "js": [
        "lib/jquery-3.1.1.min.js",
        "js/common.js",
        "js/ui.js",
        "js/frame-controller.js",
        "config.js",
        "js/content-script.js"
      ]
    }
  ],
  "icons": {
    "16": "img/icon-16x16.png",
    "48": "img/icon-48x48.png",
    "128": "img/icon-128x128.png"
  },
  "permissions": [
    "tabs",
    "activeTab",
    "<all_urls>",
    "storage"
  ],
  "offline_enabled": false,
  "web_accessible_resources": [
    "ext/*.*"
  ],
  "content_security_policy": "script-src 'self' http://localhost:3001 https://flauntreport.com; object-src 'self'; style-src 'self' https://flauntreport.com https://maxcdn.bootstrapcdn.com http://localhost:3001 https://fonts.googleapis.com "
}