Dictozo - Save and Learn new words by auto-highlighting

Dictozo - Save and Learn new words by auto-highlighting

Dictozo helps you memorize words by highlighting them along with their definitions or translations in webpages

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Dictozo - Save and Learn new words by auto-highlighting",
  "short_name": "Dictozo",
  "description": "Dictozo helps you memorize words by highlighting them along with their definitions or translations in webpages",
  "version": "6.2.1",
  "permissions": [
    "unlimitedStorage",
    "scripting",
    "storage",
    "activeTab",
    "identity",
    "identity.email"
  ],
  "host_permissions": [
    "https://www.dictozo.com/*",
    "https://dictozo.com/*"
  ],
  "background": {
    "service_worker": "js/bg.min.js"
  },
  "icons": {
    "16": "img/icon16.png",
    "48": "img/icon48.png",
    "128": "img/icon128.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "js/jquery-3.2.1.min.js",
        "img/loader.gif",
        "css/font.css"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "exclude_matches": [
        "https://google.com/*",
        "https://www.google.com/*",
        "https://bing.com/*",
        "https://www.bing.com/*",
        "https://yandex.com/*",
        "https://amazon.com/*",
        "https://www.yandex.com/*"
      ],
      "css": [
        "css/content.css"
      ],
      "js": [
        "js/content.min.js"
      ],
      "run_at": "document_idle"
    }
  ],
  "action": {
    "default_icon": {
      "16": "img/icon16.png",
      "48": "img/icon48.png",
      "128": "img/icon128.png"
    },
    "default_popup": "index.html"
  }
}