Duma

Duma

Come get your word of the day!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Duma",
  "description": "Come get your word of the day!",
  "version": "1.4.1",
  "browser_action": {
    "default_icon": "main/images/favicon_book.png",
    "default_popup": "popup.html"
  },
  "icons": {
    "64": "main/images/chromicon.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "web_accessible_resources": [
    "*.ttf"
  ],
  "chrome_url_overrides": {
    "newtab": "main/index.html"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "main/duma.js"
      ]
    }
  ]
}