Memrise Audio Uploader

Memrise Audio Uploader

Auto uploads audio for words and phrases in your course

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Memrise Audio Uploader",
  "author": "cardinalby",
  "description": "Uploads audio for words in your course",
  "version": "1.4.2",
  "icons": {
    "128": "images/mainIcon128.png"
  },
  "background": {
    "scripts": [
      "js/compatibility.js",
      "js/messages.js",
      "js/background/textToSpeech/googleTranslate.js",
      "js/background/background.js"
    ]
  },
  "content_scripts": [
    {
      "js": [
        "js/compatibility.js",
        "js/3rdParty/jquery-3.6.0.min.js",
        "js/content/memriseCourse.js",
        "js/content/memriseCourseWordRow.js",
        "js/messages.js",
        "js/content/uploadManager.js",
        "js/content/textToSpeech/languages.js",
        "js/content/autoUploadBtn.js"
      ],
      "matches": [
        "https://app.memrise.com/course/*/edit/*",
        "https://app.memrise.com/course/*/edit/database/*",
        "https://community-courses.memrise.com/course/*/edit/*",
        "https://community-courses.memrise.com/course/*/edit/database/*"
      ],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    "js/content/pageInjectedScript.js"
  ],
  "permissions": [
    "https://app.memrise.com/*",
    "https://community-courses.memrise.com/*",
    "https://translate.google.com/*"
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{570c3f3b-dcd0-4fc1-bfed-faa0ef2a3409}"
    }
  }
}