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
Eメール [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"
            }
        ]
    }
}