SuperStop

SuperStop

SuperStop adds a Shift+Esc shortcut and toolbar button that stops background requests and animations even when the Firefox Stop button is disabled.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "version": "0.6",
  "name": "SuperStop",
  "author": "Gavin Sharp",
  "description": "Stop active animations, videos, JS timers, WebSockets and XHR requests with a single key press.",
  "applications": {
    "gecko": {
      "id": "[email protected]",
      "strict_min_version": "57.0"
    }
  },
  "permissions": [
    "storage",
    "<all_urls>"
  ],
  "options_ui": {
    "page": "settings.html",
    "browser_style": true
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "all_frames": true,
      "match_about_blank": true,
      "run_at": "document_start",
      "js": [
        "content-script.js"
      ]
    }
  ],
  "icons": {
    "16": "icons/superstop16.png",
    "32": "icons/superstop32.png",
    "48": "icons/superstop48.png",
    "96": "icons/superstop96.png",
    "128": "icons/superstop128.png"
  },
  "browser_action": {}
}