Puzzle English Dictionary (Unofficial)

Puzzle English Dictionary (Unofficial)

Неофициальное расширение для добавления слов в словарь Puzzle English

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Puzzle English Dictionary (Unofficial)",
  "description": "Неофициальное расширение для добавления слов в словарь Puzzle English",
  "version": "5.3",
  "browser_action": {
    "default_icon": "/assets/images/icons/icon128.png",
    "default_popup": "/popup/popup.html"
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "{9279b9ec-4e5b-4b32-bdd5-c1d7e6da0a1f}",
      "strict_min_version": "59.0"
    }
  },
  "icons": {
    "16": "/assets/images/icons/icon16.png",
    "48": "/assets/images/icons/icon48.png",
    "128": "/assets/images/icons/icon128.png"
  },
  "background": {
    "scripts": [
      "node_modules/webextension-polyfill/dist/browser-polyfill.js",
      "core.js",
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "node_modules/@webcomponents/webcomponentsjs/webcomponents-bundle.js",
        "node_modules/webextension-polyfill/dist/browser-polyfill.js",
        "core.js",
        "/content/store.js",
        "/content/content.js",
        "/content/components/puzzleEnglishDictionaryHost.js",
        "/content/components/initial/initialButton.js",
        "/content/components/initial/initialButtons.js",
        "/content/components/showTranslate/translatePanel.js",
        "/content/components/showTranslate/currentMeaning.js",
        "/content/components/showTranslate/pronunciationButton.js",
        "/content/components/showTranslate/pronunciationSlider.js",
        "/content/components/showTranslate/pronunciationActor.js",
        "/content/components/showTranslate/addWord.js",
        "/content/components/showTranslate/baseWord.js",
        "/content/components/showTranslate/noTranslation.js",
        "/content/components/showTranslate/dictionaryInfo.js",
        "/content/components/otherMeanings/otherMeanings.js",
        "/content/components/otherMeanings/otherMeaning.js"
      ]
    }
  ],
  "options_ui": {
    "page": "/options/options.html",
    "open_in_tab": true
  },
  "web_accessible_resources": [
    "/content/content.css",
    "/assets/*"
  ],
  "permissions": [
    "contextMenus",
    "storage",
    "https://puzzle-english.com/*"
  ]
}