Noogle - Clean Naver

Noogle - Clean Naver

Extension for cleaner Naver.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Noogle - Clean Naver",
  "manifest_version": 3,
  "version": "2.3",
  "description": "Extension for cleaner Naver.",
  "permissions": [
    "contextMenus",
    "tabs",
    "storage",
    "activeTab"
  ],
  "action": {
    "default_popup": "popup/popup.html",
    "default_icon": {
      "16": "images/icon16.png",
      "48": "images/icon48.png",
      "128": "images/icon128.png"
    },
    "default_title": "Noogle"
  },
  "icons": {
    "16": "images/icon16.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.naver.com/"
      ],
      "css": [
        "core.css"
      ],
      "js": [
        "core.js"
      ]
    }
  ],
  "options_page": "option/options.html"
}