Open/Close All Spoilers

Open/Close All Spoilers

Toggles all the spoilers on or off at a website when the icon is clicked.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Open/Close All Spoilers",
  "version": "1.1",
  "description": "Toggles all the spoilers on or off at a website when the icon is clicked.",
  "icons": {
    "128": "icon_128.png"
  },
  "background": {
    "persistent": true,
    "scripts": [
      "main.js"
    ]
  },
  "content_scripts": [],
  "permissions": [
    "activeTab"
  ],
  "browser_action": {
    "default_title": "",
    "default_icon": "icon_19.png",
    "default_popup": ""
  }
}