Study Aid

Study Aid

Study more efficiently with the help of Pepppina

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Study Aid",
  "description": "Study more efficiently with the help of Pepppina",
  "version": "0.0.0.1",
  "manifest_version": 3,
  "background": {
    "service_worker": "background.js"
  },
  "host_permissions": [
    "https://*/*",
    "http://*/*",
    "https://www.google.com/*"
  ],
  "permissions": [
    "storage",
    "scripting"
  ],
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "/images/Logo.png",
      "32": "/images/Logo.png",
      "48": "/images/Logo.png",
      "128": "/images/Logo.png"
    }
  },
  "icons": {
    "16": "/images/Pepppina-gogy.png",
    "32": "/images/Pepppina-gogy.png",
    "48": "/images/Pepppina-gogy.png",
    "128": "/images/Pepppina-gogy.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "./popup.js",
        "/Features/B.js"
      ]
    }
  ]
}