옥토크롬 가제트 쿠대

옥토크롬 가제트 쿠대

옥토크롬 쿠대 이미지 수집기

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "옥토크롬 가제트 쿠대",
  "description": "옥토크롬 쿠대 이미지 수집기",
  "version": "2024.507.5",
  "manifest_version": 3,
  "background": {
    "service_worker": "background.js"
  },
  "homepage_url": "https://admin.coudae.kr/",
  "action": {
    "default_popup": "popup.html"
  },
  "options_page": "options.html",
  "icons": {
    "16": "icons/icon.png",
    "48": "icons/icon.png",
    "128": "icons/icon.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "*.html",
        "*.css",
        "*.js",
        "*.json",
        "*.png",
        "*.jpg",
        "*.gif",
        "*.svg",
        "*.woff",
        "*.woff2",
        "*.ttf",
        "*.eot",
        "*.otf"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "build/contents.js"
      ],
      "css": [
        "assets/theme.css"
      ],
      "all_frames": false
    }
  ],
  "permissions": [
    "storage",
    "tabs"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'",
    "sandbox": "sandbox allow-scripts; script-src 'self' 'unsafe-eval' 'https://fonts.googleapis.com/' 'https://use.fontawesome.com/' 'https://fonts.gstatic.com/'; object-src 'self'"
  }
}