Amazon Book Research Helper
Writing to market? This extension shows the most important information about a book right at the top of the page.
O que é Amazon Book Research Helper?
Amazon Book Research Helper é uma extensão do Chrome desenvolvida por Terminal Publishing, e sua principal característica é "Writing to market? This extension shows the most important information about a book right at the top of the page.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Amazon Book Research Helper
Baixe arquivos de extensão Amazon Book Research Helper no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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
Informações Básicas da Extensão
Nome | Amazon Book Research Helper |
ID | cnhlmanemmekoedeblbknpodncnncbof |
URL Oficial | https://chromewebstore.google.com/detail/amazon-book-research-help/cnhlmanemmekoedeblbknpodncnncbof |
Descrição | Writing to market? This extension shows the most important information about a book right at the top of the page. |
Tamanho do Arquivo | 4.12 MB |
Contagem de Instalações | 1,853 |
Versão Atual | 1.3.1 |
Última Atualização | 2023-12-31 |
Data de Publicação | 2016-12-31 |
Classificação | 5.00/5 Total de 9 Avaliações |
Desenvolvedor | Terminal Publishing |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/statico/amazon-research-helper |
URL da Página de Ajuda | https://github.com/statico/amazon-research-helper/issues |
Idiomas Suportados | 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\/*" ] } |