kimchi-reader

kimchi-reader

A reader for korean learner

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "kimchi-reader",
  "version": "0.8.3",
  "description": "A reader for korean learner",
  "homepage_url": "https://kimchi-reader.app/",
  "permissions": [
    "activeTab",
    "scripting",
    "identity",
    "storage",
    "offscreen",
    "tabCapture"
  ],
  "icons": {
    "16": "icon-16.png",
    "32": "icon-32.png",
    "64": "icon-64.png",
    "128": "icon-128.png"
  },
  "action": {
    "default_icon": "./icon-128.png",
    "default_popup": "./popup/index.html"
  },
  "options_ui": {
    "page": "./options/index.html",
    "open_in_tab": true,
    "browser_style": false
  },
  "background": {
    "service_worker": "./background/index.js"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "static/dict/action_verb/*.json",
        "static/dict/descriptive_verb/*.json",
        "static/dict/auxiliary_action_verb/*.json",
        "static/dict/auxiliary_descriptive_verb/*.json",
        "static/dict/noun/*.json",
        "static/dict/pronoun/*.json",
        "static/dict/determiner/*.json",
        "static/dict/numeral/*.json",
        "static/dict/adverb/*.json",
        "static/dict/interjection/*.json",
        "static/dict/bound_noun/*.json",
        "static/locales/common/*.json",
        "static/locales/*.json",
        "static/fonts/*.woff2",
        "inject/netflix_seek.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "commands": {
    "parse": {
      "description": "Parse the current page"
    }
  },
  "minimum_chrome_version": "116"
}