Dictionary to Notion

Dictionary to Notion

Saving Dicionary vocabularies to Notion, now supporting Oxford Learner's Dictionary and Cambridge Dictionary!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Dictionary to Notion",
  "version": "0.6.1",
  "description": "Saving Dicionary vocabularies to Notion, now supporting Oxford Learner's Dictionary and Cambridge Dictionary!",
  "permissions": [
    "storage"
  ],
  "host_permissions": [
    "https://dictionary.cambridge.org/dictionary/english/*",
    "https://*.oxfordlearnersdictionaries.com/definition/english/*",
    "https://*.notion.so/*",
    "https://*.notion.com/*"
  ],
  "background": {
    "service_worker": "src/background/bundle.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.oxfordlearnersdictionaries.com/definition/english/*"
      ],
      "js": [
        "contentScript_oxford.js"
      ],
      "web_accessible_resources": [
        {
          "resources": [
            "icons/send.png"
          ],
          "matches": [
            "https://*.oxfordlearnersdictionaries.com/*"
          ]
        }
      ]
    },
    {
      "matches": [
        "https://dictionary.cambridge.org/dictionary/english/*"
      ],
      "js": [
        "contentScript_cambridge.js"
      ],
      "web_accessible_resources": [
        {
          "resources": [
            "icons/send.png"
          ],
          "matches": [
            "https://dictionary.cambridge.org/dictionary/english/*"
          ]
        }
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "icons/send.png"
      ],
      "matches": [
        "https://*.oxfordlearnersdictionaries.com/*",
        "https://dictionary.cambridge.org/*"
      ]
    }
  ],
  "action": {
    "default_icon": {
      "16": "icons/ext-icon.png",
      "24": "icons/ext-icon.png",
      "32": "icons/ext-icon.png"
    },
    "default_title": "Send Vocab to Notion",
    "default_popup": "src/popup/popup.html"
  },
  "manifest_version": 3
}