The New York Times (nytimes) Read Aloud

The New York Times (nytimes) Read Aloud

Read alound news at nytimes.com

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "The New York Times (nytimes) Read Aloud",
  "description": "Read alound news at nytimes.com",
  "version": "1.0.0",
  "manifest_version": 3,
  "host_permissions": [
    "https://*.nytimes.com/*"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "inject.js",
        "jquery-3.6.0.min.js"
      ],
      "matches": [
        "https://*.nytimes.com/*"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.nytimes.com/*"
      ],
      "js": [
        "contentscript.js"
      ]
    }
  ]
}