Notes Looper (text To Audio Notes) (Notes Repeater/ Shuffle Through Notes)

Notes Looper (text To Audio Notes) (Notes Repeater/ Shuffle Through Notes)

Loop through your revision notes. Play your notes in the background while you focus on other tasks. Uses TTS to get ready for exams.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Notes Looper (text To Audio Notes) (Notes Repeater/ Shuffle Through Notes) ",
  "description": "Loop through your revision notes. Play your notes in the background while you focus on other tasks. Uses TTS to get ready for exams.",
  "version": "1.0.1",
  "manifest_version": 3,
  "icons": {
    "16": "icon.png",
    "48": "icon.png",
    "128": "icon.png"
  },
  "action": {
    "default_popup": "popup.html",
    "default_title": "Notes Looper",
    "default_icon": "icon.png"
  },
  "permissions": [
    "storage",
    "tts"
  ],
  "options_page": "options.html",
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "contentScript.js"
      ]
    },
    {
      "matches": [
        "https://extensionpay.com/*"
      ],
      "js": [
        "ExtPay.js"
      ],
      "run_at": "document_start"
    }
  ]
}