Game of Thrones Quotes

Game of Thrones Quotes

Random Game of Thrones quotes on every new tab, quite fantastic!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Game of Thrones Quotes",
  "description": "Random Game of Thrones quotes on every new tab, quite fantastic!",
  "author": "Burak Karakan",
  "short_name": "GoT Quotes",
  "version": "1.0.1",
  "manifest_version": 2,
  "icons": {
    "16": "images/icon-16.png",
    "32": "images/icon-32.png",
    "48": "images/icon-48.png",
    "64": "images/icon-64.png",
    "128": "images/icon-128.png"
  },
  "chrome_url_overrides": {
    "newtab": "index.html"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/"
      ],
      "css": [
        "raleway.css",
        "css/gotQuotes.css"
      ],
      "js": [
        "jquery.js"
      ]
    }
  ],
  "permissions": [
    "https://got-quotes.herokuapp.com/quotes"
  ]
}