BugFrog.io - Brand new with Video!

BugFrog.io - Brand new with Video!

The frog strikes again

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_extName__",
  "description": "__MSG_extDesc__",
  "offline_enabled": true,
  "version": "2.0.0",
  "manifest_version": 2,
  "default_locale": "en",
  "background": {
    "scripts": [
      "js/background.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "default_icon": "assets/extension-icons/logo-32.png",
    "default_popup": "html/popup.html"
  },
  "icons": {
    "16": "assets/extension-icons/logo-16.png",
    "48": "assets/extension-icons/logo-48.png",
    "128": "assets/extension-icons/logo-128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/detect.js"
      ]
    }
  ],
  "permissions": [
    "<all_urls>",
    "activeTab",
    "tabCapture",
    "tabs",
    "downloads",
    "desktopCapture",
    "storage",
    "identity"
  ],
  "externally_connectable": {
    "ids": [
      "dnifckicbjehegcfembhdihlegplfcpd"
    ],
    "matches": [
      "http://localhost:3000/*",
      "https://bugfrog-staging.herokuapp.com/*",
      "https://app.bugfrog.io/*"
    ],
    "accepts_tls_channel_id": false
  },
  "web_accessible_resources": [
    "html/camera.html",
    "html/sources.html",
    "html/settings.html",
    "js/content.js",
    "css/content.css",
    "assets/images/*",
    "assets/editor/*",
    "js/sources.js",
    "js/cameracontent.js",
    "css/cameracontent.css",
    "css/bugfrog.min.css",
    "js/libraries/plyr.min.js",
    "css/libraries/plyr.min.css",
    "js/audiosources.js",
    "html/audiosources.html"
  ],
  "commands": {
    "capture_screenrecording": {
      "suggested_key": {
        "default": "Ctrl+Shift+1",
        "mac": "Command+Shift+1"
      },
      "description": "__MSG_extCancel__"
    },
    "capture_screenshot": {
      "suggested_key": {
        "default": "Ctrl+Shift+2",
        "mac": "Command+Shift+2"
      },
      "description": "__MSG_extCancel__"
    }
  }
}