Hacker Reads for Goodreads

Hacker Reads for Goodreads

Add Hacker News comments to books on Goodreads.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Hacker Reads for Goodreads",
  "version": "0.3.3",
  "description": "Add Hacker News comments to books on Goodreads.",
  "homepage_url": "https://github.com/spookyuser/hacker-reads",
  "manifest_version": 2,
  "minimum_chrome_version": "68",
  "applications": {
    "gecko": {
      "id": "{81a2edfa-7f30-49f1-a6ca-f7a4169c95cc}",
      "strict_min_version": "61.0"
    }
  },
  "icons": {
    "128": "assets/icon.png"
  },
  "content_scripts": [
    {
      "run_at": "document_idle",
      "matches": [
        "*://www.goodreads.com/*book/show/*"
      ],
      "css": [
        "content-script.css"
      ],
      "js": [
        "content-script.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background-script.js"
    ],
    "persistent": false
  },
  "web_accessible_resources": [
    "assets/*"
  ],
  "permissions": [
    "https://hn.algolia.com/api/"
  ]
}