Book Report
Book Report is the best way for indie authors and publishers to track their sales data.
Book Report là gì?
Book Report là một tiện ích mở rộng Chrome được phát triển bởi Book Report, và tính năng chính của nó là "Book Report is the best way for indie authors and publishers to track their sales data.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Book Report
Tải xuống các tệp mở rộng Book Report dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Book Report |
ID | gopdpgphdcjglgoojmfdpbcdfcmnllkc |
URL Chính Thức | https://chromewebstore.google.com/detail/book-report/gopdpgphdcjglgoojmfdpbcdfcmnllkc |
Mô tả | Book Report is the best way for indie authors and publishers to track their sales data. |
Kích Thước Tệp | 673 KB |
Số Lần Cài Đặt | 10,000 |
Phiên Bản Hiện Tại | 2023.12.01 |
Cập Nhật Lần Cuối | 2023-12-02 |
Ngày Phát Hành | 2018-09-27 |
Đánh Giá | 3.45/5 Tổng số 33 Đánh Giá |
Nhà Phát Triển | Book Report |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://www.getbookreport.com |
URL Trang Trợ Giúp | https://support.getbookreport.com |
URL Trang Chính Sách Bảo Mật | https://www.getbookreport.com/privacy |
Ngôn Ngữ Được Hỗ Trợ | 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" } ] } } |