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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
            }
        ]
    }
}