Book Report
Book Report is the best way for indie authors and publishers to track their sales data.
What is Book Report?
Book Report is a Chrome extension developed by Book Report, and its main feature is "Book Report is the best way for indie authors and publishers to track their sales data.".
Extension Screenshots
Download Book Report Extension CRX File
Download Book Report extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Book Report automatically fetches your latest sales numbers and turns them into simple, insightful reports. We don't ask for your password, and your sales data is always fully encrypted, so you can have peace of mind that your data is safe.
Extension Basic Information
Name | Book Report |
ID | gopdpgphdcjglgoojmfdpbcdfcmnllkc |
Official URL | https://chromewebstore.google.com/detail/book-report/gopdpgphdcjglgoojmfdpbcdfcmnllkc |
Description | Book Report is the best way for indie authors and publishers to track their sales data. |
File Size | 673 KB |
Installation Count | 10,000 |
Current Version | 2023.12.01 |
Last Updated | 2023-12-02 |
Publish Date | 2018-09-27 |
Rating | 3.45/5 Total 33 Ratings |
Developer | Book Report |
[email protected] | |
Payment Type | free |
Extension Website | https://www.getbookreport.com |
Help Page URL | https://support.getbookreport.com |
Privacy Policy Page URL | https://www.getbookreport.com/privacy |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Book Report", "description": "Book Report is the best way for indie authors and publishers to track their sales data.", "version": "2023.12.01", "background": { "service_worker": "bundle.js" }, "icons": { "16": "images\/icon16.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "action": { "default_icon": "images\/icon128.png" }, "host_permissions": [ "*:\/\/*.getbookreport.com\/*", "*:\/\/*.amazon.com\/*" ], "optional_host_permissions": [ "*:\/\/*.apple.com\/*", "*:\/\/*.google.com\/*", "*:\/\/*.barnesandnoble.com\/*", "*:\/\/*.kobo.com\/*", "*:\/\/*.ingramspark.com\/*", "*:\/\/*.acx.com\/*", "*:\/\/*.findawayvoices.com\/*", "*:\/\/*.publishdrive.com\/*", "*:\/\/*.draft2digital.com\/*", "*:\/\/*.streetlib.com\/*", "*:\/\/*.smashwords.com\/*" ], "content_scripts": [ { "matches": [ "*:\/\/*.getbookreport.com\/*" ], "js": [ "listener.js" ] }, { "matches": [ "*:\/\/*.amazon.com\/*" ], "js": [ "contentScript.js" ] } ], "options_page": "options.html", "permissions": [ "cookies", "declarativeNetRequest", "declarativeNetRequestWithHostAccess" ], "declarative_net_request": { "rule_resources": [ { "id": "ruleset_1", "enabled": true, "path": "rules.json" } ] } } |