Transcribers of Reddit

Transcribers of Reddit

Accessible image descriptions for subreddits.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_name__",
  "description": "__MSG_description__",
  "default_locale": "en",
  "icons": {
    "16": "images/logo/16.png",
    "32": "images/logo/32.png",
    "64": "images/logo/64.png",
    "128": "images/logo/128.png",
    "256": "images/logo/256.png"
  },
  "permissions": [
    "storage",
    "activeTab",
    "webNavigation"
  ],
  "background": {
    "service_worker": "sw.js"
  },
  "content_scripts": [
    {
      "matches": [
        "*://www.reddit.com/*"
      ],
      "js": [
        "js/comment.js"
      ]
    }
  ],
  "action": {
    "default_popup": "popup/popup.html",
    "default_icon": {
      "16": "images/logo/16.png",
      "32": "images/logo/32.png",
      "64": "images/logo/64.png",
      "128": "images/logo/128.png",
      "256": "images/logo/256.png"
    }
  },
  "options_ui": {
    "open_in_tab": true,
    "page": "options/options.html"
  },
  "version": "0.1",
  "version_name": "0.1 beta",
  "manifest_version": 3,
  "author": "Lars Kölker",
  "homepage_url": "https://lars.koelker.dev/",
  "web_accessible_resources": [
    {
      "resources": [
        "manifest.json",
        "options/options.html"
      ],
      "matches": [
        "https://*.koelker.dev/*"
      ]
    }
  ]
}