AutoPhil: Autofill + ChatGPT + OCR

AutoPhil: Autofill + ChatGPT + OCR

Never copy and paste data again. Extract and autofill data from any PDF autofill it anywhere you need it.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "description": "Never copy and paste data again. Extract and autofill data from any PDF autofill it anywhere you need it.",
  "version": "2.1.1",
  "short_name": "AutoPhil",
  "name": "AutoPhil: Autofill + ChatGPT + OCR",
  "manifest_version": 2,
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "contentScript.bundle.js"
      ],
      "css": [
        "content.styles.css"
      ]
    }
  ],
  "browser_action": {
    "default_title": "open the popup",
    "default_icon": "./icon-128.png"
  },
  "icons": {
    "128": "./icon-128.png"
  },
  "background": {
    "scripts": [
      "background.bundle.js"
    ]
  },
  "permissions": [
    "storage",
    "unlimitedStorage"
  ],
  "web_accessible_resources": [
    "docview.html"
  ]
}