Book Report

Book Report

Book Report is the best way for indie authors and publishers to track their sales data. It automatically fetches your latest sales numbers and turns them into simple, insightful reports. We don't ask for your password.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Book Report",
  "description": "Book Report is the best way for indie authors and publishers to track their sales data.",
  "version": "2023.12.1",
  "background": {
    "scripts": [
      "bundle.js"
    ]
  },
  "icons": {
    "16": "images/icon16.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.getbookreport.com/*"
      ],
      "js": [
        "listener.js"
      ]
    },
    {
      "matches": [
        "*://*.amazon.com/*"
      ],
      "js": [
        "contentScript.js"
      ]
    }
  ],
  "permissions": [
    "*://*.getbookreport.com/*",
    "*://*.amazon.com/*",
    "cookies",
    "declarativeNetRequest",
    "declarativeNetRequestWithHostAccess"
  ],
  "declarative_net_request": {
    "rule_resources": [
      {
        "id": "ruleset_1",
        "enabled": true,
        "path": "rules.json"
      }
    ]
  },
  "browser_action": {
    "default_icon": "images/icon128.png"
  },
  "optional_permissions": [
    "*://*.apple.com/*",
    "*://*.google.com/*",
    "*://*.barnesandnoble.com/*",
    "*://*.kobo.com/*",
    "*://*.ingramspark.com/*",
    "*://*.acx.com/*",
    "*://*.findawayvoices.com/*",
    "*://*.publishdrive.com/*",
    "*://*.draft2digital.com/*",
    "*://*.streetlib.com/*",
    "*://*.smashwords.com/*"
  ],
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "{258ca2c3-53e7-4b2b-93ee-8514cfd61542}"
    }
  }
}