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 là gì?
Amazon Book Research Helper là một tiện ích mở rộng Chrome được phát triển bởi Terminal Publishing, và tính năng chính của nó là "Writing to market? This extension shows the most important information about a book right at the top of the page.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Amazon Book Research Helper
Tải xuống các tệp mở rộng Amazon Book Research Helper dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Amazon Book Research Helper |
ID | cnhlmanemmekoedeblbknpodncnncbof |
URL Chính Thức | https://chromewebstore.google.com/detail/amazon-book-research-help/cnhlmanemmekoedeblbknpodncnncbof |
Mô tả | Writing to market? This extension shows the most important information about a book right at the top of the page. |
Kích Thước Tệp | 4.12 MB |
Số Lần Cài Đặt | 1,853 |
Phiên Bản Hiện Tại | 1.3.1 |
Cập Nhật Lần Cuối | 2023-12-31 |
Ngày Phát Hành | 2016-12-31 |
Đánh Giá | 5.00/5 Tổng số 9 Đánh Giá |
Nhà Phát Triển | Terminal Publishing |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/statico/amazon-research-helper |
URL Trang Trợ Giúp | https://github.com/statico/amazon-research-helper/issues |
Ngôn Ngữ Được Hỗ Trợ | 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\/*" ] } |