WFNY FM Radio

WFNY FM Radio

Listen WFNY FM Radio with on Chrome Browser.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "WFNY FM Radio",
  "short_name": "wfnyfmradio",
  "description": "Listen WFNY FM Radio with on Chrome Browser.",
  "version": "1.0.2",
  "homepage_url": "https://wfny.fm.beenetworkenterprises.com/",
  "permissions": [
    "storage",
    "notifications"
  ],
  "host_permissions": [
    "*://*.itunes.apple.com/*",
    "*://*.beenetworkenterprises.com/*"
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  },
  "background": {
    "service_worker": "service_worker.js"
  },
  "options_page": "options.html",
  "options_ui": {
    "page": "options.html",
    "open_in_tab": false
  },
  "action": {
    "default_icon": {
      "16": "assets/images/icon16.png",
      "24": "assets/images/icon24.png",
      "32": "assets/images/icon32.png",
      "48": "assets/images/icon48.png"
    },
    "default_title": "WFNY FM Radio"
  },
  "icons": {
    "16": "assets/images/icon16.png",
    "48": "assets/images/icon48.png",
    "128": "assets/images/icon128.png"
  },
  "commands": {
    "play-pause-station": {
      "suggested_key": {
        "default": "MediaPlayPause",
        "mac": "MediaPlayPause"
      },
      "description": "Toggle playing the selected station"
    },
    "pause-station": {
      "suggested_key": {
        "default": "MediaStop"
      },
      "description": "Pause the selected station"
    },
    "_execute_action": {
      "suggested_key": {
        "default": "Alt+W"
      }
    }
  },
  "web_accessible_resources": [
    {
      "resources": [
        "defaultStation.json",
        "icon48.png",
        "icon48-dark.png",
        "options.html"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}