Examine source code of 소만사 UI 개선 제안

Inspect and view changes in 소만사 UI 개선 제안 source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "short_name": "fooding-extension",
  "name": "소만사 UI 개선 제안",
  "version": "0.3",
  "description": "소만사 제품의 오류, 수정사항, 제안 사항을 신고",
  "icons": {
    "16": "fooding.png",
    "48": "fooding.png",
    "128": "fooding.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "action": {
    "default_icon": "fooding.png",
    "default_title": "Fooding"
  },
  "permissions": [
    "activeTab",
    "storage"
  ],
  "host_permissions": [
    "http://localhost:3000/*",
    "https://o4506878747607040.ingest.us.sentry.io/*",
    "https://fooding.somansa.com/*"
  ]
}