Nekudot

Nekudot

Add `nekudot' to hebrew text.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Nekudot",
  "version": "1.1",
  "description": "Add `nekudot' to hebrew text.",
  "homepage_url": "https://github.com/GiladAmar",
  "manifest_version": 3,
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "activeTab",
    "scripting"
  ],
  "web_accessible_resources": [
    {
      "matches": [
        "<all_urls>"
      ],
      "resources": [
        "model/*"
      ]
    }
  ],
  "action": {
    "default_icon": {
      "16": "/images/aleph_16.png",
      "32": "/images/aleph_32.png",
      "48": "/images/aleph_48.png",
      "128": "/images/aleph_128.png"
    }
  },
  "icons": {
    "16": "/images/aleph_16.png",
    "32": "/images/aleph_32.png",
    "48": "/images/aleph_48.png",
    "128": "/images/aleph_128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ],
      "all_frames": true,
      "run_at": "document_start"
    }
  ]
}