Skip to content

Latest commit

 

History

History
39 lines (33 loc) · 962 Bytes

Browser extensions.md

File metadata and controls

39 lines (33 loc) · 962 Bytes

Browser extensions

Manifest

{
  "manifest_version": 2,
  "name": "My Extension",
  "version": "1.0.0",
  "icons": {
    "128": "icon.png"
  },
  "browser_action": {
    "default_icon": "icon.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  }
}
  • content.js runs in the same context as the web page you’re on.
  • background.js runs in the same context as the web page you’re on.

In React/Next.js