MFC tip tool ALPHA

MFC tip tool ALPHA

This extension downloads tips into a .html file which can be added to xsplit for various needs.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": " MFC tip tool ALPHA",
  "description": "This extension downloads tips into a .html file which can be added to xsplit for various needs.",
  "version": "1.2",
  "browser_action": {
    "default_icon": "picture2.jpg",
    "default_popup": "popup.html",
    "default_title": "Options and override values"
  },
  "options_ui": {
    "page": "options.html",
    "chrome_style": true,
    "open_in_tab": true
  },
  "permissions": [
    "activeTab",
    "storage",
    "*://*.myfreecams.com/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*.myfreecams.com/*"
      ],
      "js": [
        "tipinjector.js"
      ],
      "all_frames": true,
      "run_at": "document_end"
    }
  ]
}