Book Report

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

Co to jest Book Report?

Book Report to rozszerzenie Chrome opracowane przez Book Report, a jego główną funkcją jest „Book Report is the best way for indie authors and publishers to track their sales data.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Book Report

Pobierz pliki rozszerzeń Book Report w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Book Report Book Report
ID gopdpgphdcjglgoojmfdpbcdfcmnllkc
Oficjalny URL https://chromewebstore.google.com/detail/book-report/gopdpgphdcjglgoojmfdpbcdfcmnllkc
Opis Book Report is the best way for indie authors and publishers to track their sales data.
Rozmiar pliku 673 KB
Liczba instalacji 10,000
Aktualna Wersja 2023.12.01
Ostatnia Aktualizacja 2023-12-02
Data Publikacji 2018-09-27
Ocena 3.45/5 Łącznie 33 Oceny
Deweloper Book Report
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://www.getbookreport.com
Adres URL Strony Pomocy https://support.getbookreport.com
Adres URL Strony Polityki Prywatności https://www.getbookreport.com/privacy
Obsługiwane Języki 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"
            }
        ]
    }
}