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によって開発されたChromeの拡張機能で、その主な機能は「Writing to market? This extension shows the most important information about a book right at the top of the page.」です。
拡張機能のスクリーンショット
Amazon Book Research Helper拡張機能のCRXファイルをダウンロード
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 |
| Eメール | [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\/*"
]
} | |