Skip Silence

Skip Silence

Skip silent parts in videos and audio files

Merlin
Additional files are visible only to premium users

manifest.json


{
  "description": "Skip silent parts in videos and audio files",
  "version": "4.0.0",
  "name": "Skip Silence",
  "background": {
    "page": "background.html"
  },
  "page_action": {
    "default_icon": {
      "32": "assets/img/disabled.png"
    },
    "default_popup": "popup.html"
  },
  "icons": {
    "128": "assets/img/icon-128.png"
  },
  "permissions": [
    "activeTab",
    "storage"
  ],
  "browser_specific_settings": {
    "gecko": {
      "strict_min_version": "91.0"
    }
  },
  "content_scripts": [
    {
      "all_frames": true,
      "matches": [
        "http://*/*",
        "https://*/*",
        "<all_urls>"
      ],
      "js": [
        "contentScript.bundle.js"
      ],
      "css": [
        "content.styles.css"
      ]
    }
  ],
  "web_accessible_resources": [
    "content.styles.css",
    "assets/img/icon-128.png",
    "assets/img/icon-34.png",
    "assets/img/close.svg"
  ],
  "commands": {
    "toggle-enable": {
      "suggested_key": {
        "default": "Ctrl+Shift+S"
      },
      "description": "Enable/disable Skip Silence for the current tab"
    },
    "toggle-command-bar": {
      "suggested_key": {
        "default": "Alt+Shift+S"
      },
      "description": "Show/hide the command bar"
    }
  },
  "manifest_version": 2,
  "content_security_policy": "script-src 'self' 'unsafe-eval' https://scripts.simpleanalyticscdn.com https://a.vantezzen.io; object-src 'self'",
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}