스타트줌

스타트줌

사용자의 웹 서핑 생산성을 높여주는 줌 시작페이지 제공

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "스타트줌",
  "description": "사용자의 웹 서핑 생산성을 높여주는 줌 시작페이지 제공",
  "version": "2.0.5.0",
  "manifest_version": 3,
  "action": {
    "default_icon": "icon.png",
    "default_title": "스타트줌 바로가기"
  },
  "icons": {
    "16": "icon_16.png",
    "48": "icon_48.png",
    "128": "icon_128.png"
  },
  "permissions": [
    "declarativeNetRequest",
    "topSites",
    "storage"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "chrome_url_overrides": {
    "newtab": "index.html"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "icon.png"
      ],
      "matches": [
        "*://zum.com/*",
        "*://*.zum.com/*",
        "*://localhost/*"
      ]
    }
  ],
  "externally_connectable": {
    "matches": [
      "*://zum.com/*",
      "*://*.zum.com/*",
      "*://localhost/*"
    ]
  }
}