Scholarhive: One-Click Scholarship Applications

Scholarhive helps students easily find and apply for scholarships by automating the application process.
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Scholarhive: One-Click Scholarship Applications",
  "version": "12.0",
  "description": "Scholarhive helps students easily find and apply for scholarships by automating the application process.",
  "permissions": [
    "scripting",
    "activeTab",
    "storage",
    "clipboardWrite"
  ],
  "host_permissions": [
    "*://*/*"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_icon": "scholarhive.png",
    "default_title": "Scholarship Autofill"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "*.ttf",
        "styles.css",
        "scholar.svg"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "icons": {
    "16": "icons/icon16.png",
    "32": "icons/icon32.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "libs/jspdf.umd.min.js",
        "libs/pdfobject.min.js",
        "content.js"
      ]
    }
  ]
}