Beautiful Hieroglyphs

Beautiful Hieroglyphs

Replace wikihiero images with beautiful alternatives.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Beautiful Hieroglyphs",
  "version": "0.4.1",
  "description": "Replace wikihiero images with beautiful alternatives.",
  "manifest_version": 3,
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "all_frames": true,
      "js": [
        "assets/js/contentScript.js"
      ]
    }
  ],
  "icons": {
    "16": "assets/images/icon16.png",
    "32": "assets/images/icon32.png",
    "48": "assets/images/icon48.png",
    "128": "assets/images/icon128.png"
  },
  "options_ui": {
    "page": "assets/html/options.html",
    "open_in_tab": false
  },
  "permissions": [
    "storage"
  ]
}