iVelt Helper

iVelt Helper

Adds accessibility and usability improvements to אייוועלט.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "iVelt Helper",
  "description": "Adds accessibility and usability improvements to אייוועלט.",
  "version": "1.10.0",
  "icons": {
    "48": "img/icon48.png",
    "128": "img/icon128.png"
  },
  "action": {
    "default_icon": {
      "48": "img/icon48.png",
      "128": "img/icon128.png"
    },
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.ivelt.com/*",
        "*://*.yiddishworld.com/*",
        "*://*.198.153.76.147/*"
      ],
      "js": [
        "js/contentScript.js",
        "js/refreshNotificationCount.js",
        "js/settingsHandler.js"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "options_page": "settings.html",
  "permissions": [
    "tabs",
    "alarms",
    "cookies",
    "storage",
    "notifications",
    "webRequest",
    "background",
    "declarativeNetRequestWithHostAccess",
    "declarativeNetRequestFeedback"
  ],
  "host_permissions": [
    "*://*.ivelt.com/*",
    "*://*.198.153.76.147/*",
    "*://*.yiddishworld.com/*",
    "*://www.xn--4dbhss5b.com/*"
  ],
  "declarative_net_request": {
    "rule_resources": [
      {
        "id": "ruleset_1",
        "enabled": true,
        "path": "rules.json"
      }
    ]
  },
  "web_accessible_resources": [
    {
      "resources": [
        "js/keyboardShortcuts.js",
        "js/removeNestedQuotes.js",
        "js/addQuoteLastOnlyButton.js",
        "js/newResponseNotification.js",
        "js/addGoogleSearch.js",
        "js/sefariaLinker.js",
        "js/settingsHandler.js"
      ],
      "matches": [
        "*://*.ivelt.com/*",
        "*://*.yiddishworld.com/*",
        "*://*.198.153.76.147/*"
      ],
      "extension_ids": []
    }
  ],
  "options_ui": {
    "page": "settings.html",
    "open_in_tab": true
  }
}