SmartFill

SmartFill

この拡張機能はJust-AGIの下でのスマートフィルインプラグインです。

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "SmartFill",
  "version": "1.0",
  "description": "この拡張機能はJust-AGIの下でのスマートフィルインプラグインです。",
  "icons": {
    "128": "icon.png"
  },
  "action": {
    "default_popup": "index.html",
    "default_icon": "icon.png"
  },
  "permissions": [
    "tabs"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_end"
    }
  ]
}