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文件

下載Amazon Book Research Helper擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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\/*"
    ]
}