Search_support

Search_support

AI를 활용한 검색도우미

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Search_support",
  "version": "0.6.1",
  "description": "AI를 활용한 검색도우미",
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAhLym1Sqdw+zTKiJo+LKZP0FgivOZBct5eSroFj+78X7ny7XiR4Iim1fHK8TcRkA9EW+6ArlPiZia2KJLQq1pA0IAG6oCvvm1pt0Ge5gr++DzJPELZtRskiM+kn2nSU1ZBxKPlQiOsTE560/Vprf6HofRg6pHNVSu8xfu35z9CWv1UmgZ/SJe7Zn8X7Vca80PaYxi8E2T1/FFDU2eiP2B3KZa3ZjMMRPO0KeuJcyFxsR1Y/cczSika6IshZ73BeXcFu1CNEK1BojE5Kf3Dys2yZyBp6ym1PgUHIHoBwn5Q1wPLk/0gYpRPhqpu1ExNJ30v2c7v+ldePeJeMROikLwRwIDAQAB",
  "oauth2": {
    "client_id": "821868808181-t3nrn5c72tbce2hjghp43cvgmviivpuf.apps.googleusercontent.com",
    "scopes": [
      "https://www.googleapis.com/auth/userinfo.email"
    ]
  },
  "icons": {
    "16": "icons/icon_16.png",
    "32": "icons/icon_32.png",
    "48": "icons/icon_48.png",
    "128": "icons/icon_128.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_title": "Search_support",
    "default_popup": "popup.html"
  },
  "permissions": [
    "activeTab",
    "tabs",
    "scripting",
    "storage",
    "identity",
    "identity.email"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_idle",
      "css": [
        "contentStyle.css"
      ],
      "js": [
        "contentScript.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "matches": [
        "<all_urls>"
      ],
      "resources": [
        "fonts/*",
        "images/*"
      ]
    }
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self';"
  },
  "commands": {
    "all-search": {
      "suggested_key": {
        "default": "Ctrl+Shift+F",
        "mac": "Command+Shift+F"
      },
      "description": "Run \"all-search\" on the current page."
    }
  }
}