Goodreads Review Shield for Authors

Goodreads Review Shield for Authors

Goodreads for Authors to protect their mental health that hides ratings and low reviews.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Goodreads Review Shield for Authors",
  "description": "Goodreads for Authors to protect their mental health that hides ratings and low reviews.",
  "version": "1.0.1",
  "action": {
    "default_icon": "images/icon64.png",
    "default_popup": "options.html"
  },
  "icons": {
    "16": "images/icon16.png",
    "32": "images/icon32.png",
    "64": "images/icon64.png",
    "128": "images/icon128.png"
  },
  "options_page": "options.html",
  "content_scripts": [
    {
      "matches": [
        "*://*.goodreads.com/*"
      ],
      "js": [
        "js/common.js",
        "js/goodreads.js"
      ],
      "css": [
        "css/goodreads.css"
      ]
    }
  ],
  "permissions": [
    "storage"
  ]
}