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 - это расширение Chrome, разработанное Terminal Publishing, и его основная функция - "Writing to market? This extension shows the most important information about a book right at the top of the page.".
Снимки экрана расширения
Скачать файл CRX расширения Amazon Book Research Helper
Скачайте файлы расширений 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 Основная информация о расширении
| Название | |
| 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\/*"
]
} | |