The Dictionary Extension

The Dictionary Extension

Get your dictionary in your newtab

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "The Dictionary Extension",
  "description": "Get your dictionary in your newtab",
  "homepage_url": "http://thedictionaryextension.com/",
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "permissions": [
    "https://www.loadigital.com/dictionary/",
    "storage",
    "webNavigation",
    "notifications",
    "https://ssl.google-analytics.com/ga.js"
  ],
  "version": "2.2",
  "browser_action": {
    "default_icon": {
      "16": "public/images/bd-16.png",
      "32": "public/images/bd-32.png",
      "48": "public/images/bd-48.png",
      "128": "public/images/bd-128.png"
    }
  },
  "icons": {
    "16": "public/images/bd-16.png",
    "32": "public/images/bd-32.png",
    "48": "public/images/bd-48.png",
    "128": "public/images/bd-128.png"
  },
  "chrome_url_overrides": {
    "newtab": "landing.html"
  },
  "web_accessible_resources": [
    "images/*.*"
  ],
  "content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self';style-src 'self' 'unsafe-inline' *;media-src *;"
}