Strike Through Extension

Strike Through Extension

Allows the user to strike out all the selected items.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "Strike Through Extension",
  "description": "Allows the user to strike out all the selected items.",
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "1.0",
  "permissions": [
    "contextMenus",
    "tabs",
    "background",
    "http://*/*",
    "https://*/*"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "web_accessible_resources": [
    "content.js"
  ],
  "icons": {
    "48": "images/icon-48.png",
    "128": "images/icon-128.png"
  },
  "manifest_version": 2
}