Sudoku On The Rocks

Sudoku On The Rocks

Sudoku on the rocks! Twist, clear, cheer - brain fun unleashed

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Sudoku On The Rocks",
  "description": "Sudoku on the rocks! Twist, clear, cheer - brain fun unleashed",
  "version": "1.1.0",
  "icons": {
    "16": "icons/icon_16.png",
    "32": "icons/icon_32.png",
    "48": "icons/icon_48.png",
    "128": "icons/icon_128.png"
  },
  "background": {
    "service_worker": "assets/background.js"
  },
  "permissions": [
    "storage",
    "activeTab"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "exclude_matches": [
        "*://*/*.json",
        "*://*/*.pdf",
        "*://*/*.jpeg",
        "*://*/*.jpg",
        "*://*/*.png",
        "*://*/*.svg"
      ],
      "js": [
        "assets/content.js"
      ]
    }
  ],
  "action": {
    "default_title": "Sudoku On The Rocks"
  },
  "host_permissions": [
    "<all_urls>"
  ],
  "web_accessible_resources": [
    {
      "matches": [
        "<all_urls>"
      ],
      "resources": [
        "images/*.*",
        "icons/*.*",
        "assets/*.*",
        "sounds/*.*",
        "fonts/*.*"
      ]
    }
  ]
}