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
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | 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\/*" ] } |