다모앙 메모 애드온

다모앙 메모 애드온

'다모앙' 웹사이트에서 회원이름에 개인 메모를 기록할 수 있습니다. v1.4 업데이트 : 다크모드에서 댓글 글자 색상 가독성이 좋지않은 문제해결을 위해 색상변경.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "다모앙 메모 애드온",
  "version": "1.4",
  "action": {
    "default_popup": "html/popup.html",
    "default_icon": {
      "16": "images/icon16.png",
      "48": "images/icon48.png",
      "128": "images/icon128.png"
    }
  },
  "permissions": [
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://damoang.net/*"
      ],
      "js": [
        "js/memberNote.js",
        "js/contentScript.js"
      ]
    }
  ],
  "icons": {
    "16": "images/icon16.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  }
}