Jump Cutter

Jump Cutter

Watch lectures ~1.5x faster by fast-forwarding long pauses between sentences

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Jump Cutter",
  "version": "1.26.9",
  "description": "__MSG_extensionDescription__",
  "permissions": [
    "storage"
  ],
  "browser_action": {
    "default_popup": "popup/popup.html",
    "default_icon": {
      "64": "icons/icon.svg-64.png",
      "128": "icons/icon-big-padded.svg-128.png"
    }
  },
  "background": {
    "scripts": [
      "background/main.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "content/main.js"
      ],
      "all_frames": true,
      "run_at": "document_idle",
      "match_about_blank": true
    }
  ],
  "web_accessible_resources": [
    "content/SilenceDetectorProcessor.js",
    "content/VolumeFilterProcessor.js",
    "chunks/*.js"
  ],
  "options_ui": {
    "page": "options/index.html",
    "open_in_tab": true
  },
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "default": "Ctrl+Shift+Space"
      }
    },
    "toggle_enabled": {
      "description": "__MSG_toggleExtension__",
      "suggested_key": {
        "default": "Alt+Shift+X"
      }
    }
  },
  "icons": {
    "64": "icons/icon.svg-64.png",
    "128": "icons/icon-big-padded.svg-128.png"
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "[email protected]",
      "strict_min_version": "91.0a1"
    }
  },
  "manifest_version": 2,
  "default_locale": "en"
}