Highlighter - Web & PDF

Highlighter - Web & PDF

A highlighting and organizing tool for websites and PDF's. ​​📝

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Highlighter - Web & PDF",
  "version": "1.0.0",
  "description": "A highlighting and organizing tool for websites and PDF's. ​​📝",
  "action": {
    "default_popup": "popup.html"
  },
  "icons": {
    "32": "icons/32.png",
    "48": "icons/128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "content_styles.css"
      ],
      "js": [
        "content_script.js"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "tabs",
    "storage",
    "unlimitedStorage",
    "scripting"
  ],
  "host_permissions": [
    "https://*/",
    "http://*/",
    "file:///*/"
  ]
}