Hijje Nepali Spell Checker

Hijje Nepali Spell Checker

An extension for checking Nepali words

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": " Hijje Nepali Spell Checker",
  "short_name": "Hijje",
  "version": "1.0.0",
  "description": "An extension for checking Nepali words",
  "icons": {
    "16": "./images/image.png",
    "48": "./images/image.png",
    "64": "./images/image.png",
    "128": "./images/image.png"
  },
  "author": "semantro",
  "action": {
    "default_action": "images/image.png",
    "default_popup": "popup.html",
    "default_title": "hijje",
    "browser_style": false
  },
  "permissions": [
    "storage",
    "activeTab",
    "tabs",
    "scripting"
  ],
  "background": {
    "service_worker": "sworker.js"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "**/*.js",
        "popup.html"
      ],
      "matches": [
        "<all_urls>"
      ],
      "extension_ids": []
    }
  ],
  "content_scripts": [
    {
      "matches": [
        "https://*/",
        "https://*/*",
        "file:///*"
      ],
      "js": [
        "allmin.js"
      ],
      "css": [
        "css/marker.css"
      ],
      "all_frame": false
    }
  ]
}