Gospel Buddy

Gospel Buddy

Extension to create footnotes between scriptures and General Conference talks from the Church of Jesus Christ of Latter-Day Saints

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "Gospel Buddy",
  "version": "1.3.0",
  "description": "Extension to create footnotes between scriptures and General Conference talks from the Church of Jesus Christ of Latter-Day Saints",
  "icons": {
    "16": "images/icon16.png",
    "24": "images/icon24.png",
    "32": "images/icon32.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "permissions": [
    "storage",
    "activeTab"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://www.churchofjesuschrist.org/*"
      ],
      "js": [
        "main-content.js",
        "sidebar-content.js",
        "chapter-nav-content.js"
      ]
    }
  ],
  "action": {
    "default_popup": "settings.html",
    "default_icon": {
      "16": "images/icon16.png",
      "24": "images/icon24.png",
      "32": "images/icon32.png",
      "48": "images/icon48.png"
    }
  },
  "web_accessible_resources": [
    {
      "resources": [
        "settings.html"
      ],
      "matches": [
        "https://www.churchofjesuschrist.org/*"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}