Stop button

Stop button

Adds a stop button to the browser toolbar. Simply a stop button, otherwise similar to what the browser normally has, but this does not transform to a reload button at the wrong moment.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Stop button",
  "version": "0.3resigned1",
  "description": "Adds a stop button to the browser toolbar.",
  "icons": {
    "48": "icons/stop.svg",
    "96": "icons/stop.svg"
  },
  "permissions": [
    "activeTab",
    "tabs"
  ],
  "browser_action": {
    "default_icon": "icons/stop.svg",
    "default_title": "Stop",
    "theme_icons": [
      {
        "light": "icons/stop-dark.svg",
        "dark": "icons/stop.svg",
        "size": 16
      }
    ]
  },
  "background": {
    "scripts": [
      "stop.js"
    ]
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "{ca48401e-96a5-47ea-8009-7c2f62efe060}"
    }
  }
}