ETHSBell

ETHSBell

A Browser Extension version of ETHSBell

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "browser_specific_settings": {
    "gecko": {
      "id": "[email protected]",
      "strict_min_version": "57.0"
    }
  },
  "name": "ETHSBell",
  "version": "2.4.2",
  "manifest_version": 2,
  "description": "A Browser Extension version of ETHSBell",
  "homepage_url": "https://ethsbell.app",
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "background": {
    "scripts": [
      "src/helpers.js",
      "background.js"
    ]
  },
  "options_ui": {
    "open_in_tab": false,
    "page": "/options/index.html"
  },
  "browser_action": {
    "default_icon": "icons/icon128.png",
    "default_title": "ETHSBell",
    "default_popup": "src/browser_action/browser_action.html"
  },
  "permissions": [
    "notifications",
    "storage",
    "alarms"
  ],
  "externally_connectable": {
    "matches": [
      "https://ethsbell.app/*",
      "https://dayschool.ethsbell.app/*"
    ]
  }
}