Simple Dic (Instant Dictionary)

Simple Dic (Instant Dictionary)

Simple dic is a dictionary chrome extension for easy to check words on a web page

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Simple Dic (Instant Dictionary)",
  "short_name": "Simple Dic",
  "description": "Simple dic is a dictionary chrome extension for easy to check words on a web page",
  "version": "0.25",
  "options_page": "options.html",
  "background": {
    "scripts": [
      "./js/background.js"
    ]
  },
  "icons": {
    "32": "./icon/icon-32.png",
    "128": "./icon/icon-128.png"
  },
  "browser_action": {
    "default_icon": "./icon/icon-32.png",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "./js/lib.js",
        "./js/content.js"
      ]
    }
  ],
  "permissions": [
    "*://*/*",
    "storage"
  ]
}