Amazon Book Research Helper

Writing to market? This extension shows the most important information about a book right at the top of the page.

Amazon Book Research Helper란 무엇입니까?

Amazon Book Research Helper은(는) Terminal Publishing에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Writing to market? This extension shows the most important information about a book right at the top of the page."입니다.

확장 프로그램 스크린샷

screenshot

Amazon Book Research Helper 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Adds at-a-glance information to the top of Amazon book listings to reduce scrolling. 

• Shows "Self Published" if the book was self published
• Shows rank, rating, reviews, age in weeks, and ratio (num. reviews divided by age in weeks)
• Shows page count and estimated word count
• Shows file size for Kindle books
• Shows rank using Chris Fox's "tiers"
• Quick links to sales calculators for additional sales data and price and rank history
• Can expand to show author's rank in all categories

I'm very open to feedback! Email me at [email protected] with comments/suggestions.

This extension is open-source: https://github.com/statico/amazon-research-helper                    

확장 프로그램 기본 정보

이름 Amazon Book Research Helper Amazon Book Research Helper
ID cnhlmanemmekoedeblbknpodncnncbof
공식 URL https://chromewebstore.google.com/detail/amazon-book-research-help/cnhlmanemmekoedeblbknpodncnncbof
설명 Writing to market? This extension shows the most important information about a book right at the top of the page.
파일 크기 4.12 MB
설치 횟수 1,853
현재 버전 1.3.1
최근 업데이트 2023-12-31
출시 날짜 2016-12-31
평점 5.00/5 총 9 개의 평점
개발자 Terminal Publishing
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/statico/amazon-research-helper
도움말 페이지 URL https://github.com/statico/amazon-research-helper/issues
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Amazon Book Research Helper",
    "description": "Writing to market? This extension shows the most important information about a book right at the top of the page.",
    "version": "1.3.1",
    "author": "Ian L.",
    "icons": {
        "128": "assets\/icon128.png",
        "96": "assets\/icon96.png",
        "48": "assets\/icon48.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.amazon.com\/*",
                "*:\/\/*.amazon.ca\/*",
                "*:\/\/*.amazon.com.au\/*",
                "*:\/\/*.amazon.co.uk\/*"
            ],
            "run_at": "document_end",
            "css": [
                "amazon.css"
            ],
            "js": [
                "amazon.js"
            ]
        },
        {
            "matches": [
                "https:\/\/kindlepreneur.com\/amazon-kdp-sales-rank-calculator\/*"
            ],
            "js": [
                "kp.js"
            ]
        },
        {
            "matches": [
                "https:\/\/www.tckpublishing.com\/amazon-book-sales-calculator\/*"
            ],
            "js": [
                "tck.js"
            ]
        },
        {
            "matches": [
                "https:\/\/www.bklnk.com\/*"
            ],
            "js": [
                "bklnk.js"
            ]
        }
    ],
    "host_permissions": [
        "*:\/\/*.amazon.com\/*",
        "*:\/\/*.amazon.ca\/*",
        "*:\/\/*.amazon.com.au\/*",
        "*:\/\/*.amazon.co.uk\/*",
        "https:\/\/www.tckpublishing.com\/amazon-book-sales-calculator\/*",
        "https:\/\/kindlepreneur.com\/amazon-kdp-sales-rank-calculator\/*",
        "https:\/\/www.bklnk.com\/*"
    ]
}