Quran Verse Of The Day

Quran Verse Of The Day

Open a new tab to reveal a random Quran verse. Complete with translation and audio play.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Quran Verse Of The Day",
  "description": "Open a new tab to reveal a random Quran verse. Complete with translation and audio play.",
  "version": "1.0.0",
  "manifest_version": 3,
  "author": "Quran e Hakeem",
  "homepage_url": "https://quranehakeem.com",
  "icons": {
    "16": "icon.png",
    "48": "icon.png",
    "128": "icon.png"
  },
  "permissions": [
    "activeTab",
    "storage"
  ],
  "chrome_url_overrides": {
    "newtab": "newtab.html"
  },
  "options_page": "options.html",
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "contentScript.js"
      ]
    }
  ]
}