XKCD 1625 Replacements

XKCD 1625 Replacements

This extension makes news articles more fun using a variation on the suggestions in XKCD 1625.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "XKCD 1625 Replacements",
  "short_name": "xkcdSub1625",
  "description": "This extension makes news articles more fun using a variation on the suggestions in XKCD 1625.",
  "version": "0.1",
  "permissions": [
    "tabs",
    "http://*/*",
    "https://*/",
    "activeTab"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "default_title": "Make this page fun!",
    "default_icon": {
      "19": "img/sub19.png",
      "38": "img/sub38.png",
      "128": "img/sub128.png"
    }
  }
}