Wremix

Wremix

Record your screen & upload instantly to Facebook, Youtube & Twitter or share anywhere.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Wremix",
  "short_name": "Wremix",
  "version": "1.1.3",
  "manifest_version": 2,
  "description": "Record your screen & upload instantly to Facebook, Youtube & Twitter or share anywhere.",
  "browser_action": {
    "default_icon": "images/icons/record-pop-on.png",
    "default_popup": "lib/popup.html"
  },
  "web_accessible_resources": [
    "images/*",
    "fonts/*.ttf",
    "fonts/*.otf",
    "fonts/*.ttc",
    "lib/*"
  ],
  "icons": {
    "16": "images/icons/record-pop-on.png",
    "48": "images/icons/record-pop-on.png",
    "64": "images/icons/record-pop-on.png",
    "128": "images/icons/record-pop-on.png"
  },
  "background": {
    "scripts": [
      "lib/background.js"
    ],
    "persistent": true
  },
  "permissions": [
    "storage",
    "tabs",
    "tabCapture",
    "activeTab",
    "contextMenus",
    "notifications"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "lib/jquery-3.2.1.min.js",
        "lib/jquery-ui.min.js",
        "lib/content.js",
        "lib/mix.js",
        "lib/record.js",
        "lib/media.js",
        "lib/popup.js"
      ],
      "css": [
        "lib/insert.css",
        "lib/ani.css",
        "lib/jquery-ui.min.css"
      ],
      "run_at": "document_end",
      "all_frames": false
    }
  ],
  "externally_connectable": {
    "matches": [
      "https://*.wremix.com/*"
    ]
  }
}