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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Writing to market? This extension shows the most important information about a book right at the top of the page."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Amazon Book Research Helper एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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\/*"
    ]
}