Book Report

Book Report is the best way for indie authors and publishers to track their sales data.

什么是Book Report?

Book Report是由Book Report开发的Chrome扩展程序,该扩展的主要功能是“Book Report is the best way for indie authors and publishers to track their sales data.”。

扩展截图

screenshot
screenshot
screenshot

下载Book Report扩展crx文件

下载Book Report扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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.                    

扩展基本信息

名称 Book Report Book Report
ID gopdpgphdcjglgoojmfdpbcdfcmnllkc
官方URL https://chromewebstore.google.com/detail/book-report/gopdpgphdcjglgoojmfdpbcdfcmnllkc
简介 Book Report is the best way for indie authors and publishers to track their sales data.
文件大小 673 KB
安装次数 10,000
当前版本 2023.12.01
更新时间 2023-12-02
上架时间 2018-09-27
评分 3.45/5 共33次评分
开发者 Book Report
电子邮箱 [email protected]
付费类型 free
扩展官网 https://www.getbookreport.com
帮助页面URL https://support.getbookreport.com
隐私政策页面URL https://www.getbookreport.com/privacy
支持的语言 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"
            }
        ]
    }
}