Game of Votes

Game of Votes

We believe that the 2016 elections have reached a Game of Thrones level of absurdity.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Game of Votes",
  "description": "We believe that the 2016 elections have reached a Game of Thrones level of absurdity.",
  "version": "1.0",
  "icons": {
    "16": "icon.png",
    "48": "icon.png",
    "128": "icon.png"
  },
  "browser_action": {
    "default_icon": "icon.png",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "js": [
        "jquery-1.11.3.min.js",
        "data/candidates.js",
        "data/characterToImages.js",
        "data/castles.js",
        "data/cities.js",
        "data/USStates.js",
        "data/keywords.js",
        "data/50TopUSCities.js",
        "data/randomImages.js",
        "data/classicQuotes.js"
      ],
      "matches": [
        "http://www.washingtonpost.com/*",
        "https://www.washingtonpost.com/*",
        "*://www.nytimes.com/*",
        "*://www.cnn.com/*",
        "*://www.foxnews.com/*",
        "*://www.politico.com/*"
      ]
    }
  ],
  "background": {
    "scripts": [
      "jquery-1.11.3.min.js",
      "popup.js",
      "disabled.js",
      "alert.js"
    ],
    "persistent": false
  },
  "permissions": [
    "tabs",
    "http://*/*"
  ]
}