Meanify - Dictionary

View meanings easily as you browse the web and store them for later also.
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Meanify - Dictionary",
  "version": "0.1.6",
  "manifest_version": 3,
  "description": "View meanings easily as you browse the web and store them for later also.",
  "icons": {
    "16": "./images/icon2-1.png",
    "48": "./images/icon2-2.png",
    "128": "./images/icon2-3.png",
    "256": "./images/icon2-4.png",
    "512": "./images/icon2-5.png"
  },
  "action": {
    "default_popup": "html/popup.html",
    "default_icon": {
      "16": "./images/icon2-1.png",
      "48": "./images/icon2-2.png",
      "128": "./images/icon2-3.png",
      "256": "./images/icon2-4.png",
      "512": "./images/icon2-5.png"
    },
    "default_title": "Meanify"
  },
  "background": {
    "service_worker": "js/background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/myscript.js"
      ]
    }
  ],
  "options_page": "./html/content.html",
  "permissions": [
    "storage",
    "contextMenus",
    "scripting"
  ],
  "host_permissions": [
    "http://*/",
    "https://*/"
  ]
}