Video Speed Watcher

Video Speed Watcher

Skips silent parts in videos in real time

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "Video Speed Watcher",
  "version": "1.0.1.2",
  "description": "Skips silent parts in videos in real time",
  "manifest_version": 2,
  "icons": {
    "64": "icons/icon64.png",
    "128": "icons/icon128.png"
  },
  "options_ui": {
    "open_in_tab": false,
    "page": "options/index.html"
  },
  "background": {
    "persistent": false,
    "scripts": [
      "background/main.js"
    ]
  },
  "browser_action": {
    "default_icon": {
      "64": "icons/icon64.png",
      "128": "icons/icon128.png"
    },
    "default_popup": "popup/popup.html"
  },
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "default": "Ctrl+Shift+Space"
      }
    },
    "toggle_enabled": {
      "description": "Toggle extension",
      "suggested_key": {
        "default": "Alt+Shift+X"
      }
    }
  },
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "content/main.js"
      ],
      "match_about_blank": true,
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_idle"
    }
  ],
  "permissions": [
    "storage"
  ],
  "web_accessible_resources": [
    "content/SilenceDetectorProcessor.js",
    "content/VolumeFilterProcessor.js",
    "chunks/*.js"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}