Book Report

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

Cos'è Book Report?

Book Report è un'estensione di Chrome sviluppata da Book Report, e la sua funzione principale è "Book Report is the best way for indie authors and publishers to track their sales data.".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Book Report

Scarica i file di estensione Book Report in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Book Report Book Report
ID gopdpgphdcjglgoojmfdpbcdfcmnllkc
URL Ufficiale https://chromewebstore.google.com/detail/book-report/gopdpgphdcjglgoojmfdpbcdfcmnllkc
Descrizione Book Report is the best way for indie authors and publishers to track their sales data.
Dimensione del File 673 KB
Conteggio Installazioni 10,000
Versione Corrente 2023.12.01
Ultimo Aggiornamento 2023-12-02
Data di Pubblicazione 2018-09-27
Valutazione 3.45/5 Totale 33 Valutazioni
Sviluppatore Book Report
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://www.getbookreport.com
URL della Pagina di Aiuto https://support.getbookreport.com
URL della Pagina della Politica sulla Privacy https://www.getbookreport.com/privacy
Lingue Supportate 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"
            }
        ]
    }
}