Video to Text

Video to Text

Video to Text

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Video to Text",
  "version": "1.0",
  "description": "Video to Text",
  "browser_action": {
    "default_icon": {
      "19": "/images/icon.png",
      "38": "/images/icon.png"
    },
    "default_title": "Screenshot Capture"
  },
  "options_page": "/content/options.html",
  "background": {
    "scripts": [
      "src/background.js"
    ],
    "persistent": false
  },
  "web_accessible_resources": [
    "/images/Jcrop.gif",
    "/images/pixel.png"
  ],
  "commands": {
    "take-screenshot": {
      "suggested_key": {
        "default": "Alt+S"
      },
      "description": "Take Screenshot"
    }
  },
  "icons": {
    "16": "/images/icon-16.png",
    "32": "/images/icon-32.png",
    "48": "/images/icon-48.png",
    "128": "/images/icon-128.png"
  },
  "homepage_url": "https://chrome.google.com/webstore/",
  "permissions": [
    "storage",
    "activeTab"
  ]
}