Examine source code of My Prayer

Inspect and view changes in My Prayer source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "manifest_version": 3,
  "name": "My Prayer",
  "version": "1.0.3",
  "default_locale": "en",
  "description": "__MSG_extensionDescription__",
  "action": {
    "default_popup": "popup/popup.html"
  },
  "icons": {
    "16": "imgs/icon-16.png",
    "32": "imgs/icon-32.png",
    "64": "imgs/icon-64.png",
    "128": "imgs/icon-128.png",
    "256": "imgs/icon-256.png"
  },
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "permissions": [
    "storage",
    "geolocation",
    "alarms",
    "notifications"
  ],
  "content_scripts": [
    {
      "js": [
        "popup/content.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "imgs/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "commands": {
    "open_popup": {
      "suggested_key": {
        "default": "Ctrl+Shift+Y"
      },
      "description": "__MSG_commandDescription__"
    }
  },
  "host_permissions": [
    "https://api.aladhan.com/*",
    "https://api.bigdatacloud.net/*"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}