KDP Autofill
KDP Auto-Fill helps you upload your books much faster with auto fill system to save you time and the hustle.
KDP Autofillとは何ですか?
KDP Autofillはhttps://www.mercherworld.comによって開発されたChromeの拡張機能で、その主な機能は「KDP Auto-Fill helps you upload your books much faster with auto fill system to save you time and the hustle.」です。
拡張機能のスクリーンショット
KDP Autofill拡張機能のCRXファイルをダウンロード
KDP Autofill拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
KDP Auto Fill Help you save the book information and details so you don't have to fill it out every time you want to upload a book. it saves you a lot of time and hustle and also there are no errors or typos once you do the first filling correctly. Amazon KDP Automation Gets Easier! 拡張機能の基本情報
| 名前 | |
| ID | hkaaadbdciidjlkjdlhagcomlinjeffp |
| 公式URL | https://chromewebstore.google.com/detail/kdp-autofill/hkaaadbdciidjlkjdlhagcomlinjeffp |
| 説明 | KDP Auto-Fill helps you upload your books much faster with auto fill system to save you time and the hustle. |
| ファイルサイズ | 99.69 KB |
| インストール数 | 6,187 |
| 現在のバージョン | 2.0.0.4 |
| 最終更新日 | 2022-10-22 |
| 公開日 | 2020-01-12 |
| 評価 | 3.91/5 合計 35 レビュー |
| 開発者 | https://www.mercherworld.com |
| Eメール | [email protected] |
| 支払い方法 | in_app |
| 拡張機能のウェブサイト | https://autofill.mercherworld.com/ |
| ヘルプページのURL | https://autofill.mercherworld.com/ |
| プライバシーポリシーページのURL | https://mercherworld.com/privacy-policy |
| 対応言語 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "KDP Autofill",
"description": "KDP Auto-Fill helps you upload your books much faster with auto fill system to save you time and the hustle.",
"version": "2.0.0.4",
"host_permissions": [
"https:\/\/kdp.amazon.com\/*",
"https:\/\/autofill.mercherworld.com\/*"
],
"content_scripts": [
{
"matches": [
"https:\/\/kdp.amazon.com\/en_US\/title-setup\/paperback\/*\/details*"
],
"js": [
"js\/jquery-3.1.1.min.js",
"js\/details.min.js"
],
"run_at": "document_end"
},
{
"matches": [
"https:\/\/kdp.amazon.com\/en_US\/title-setup\/paperback\/*\/pricing*"
],
"js": [
"js\/jquery-3.1.1.min.js",
"js\/pricing.min.js"
]
},
{
"matches": [
"https:\/\/kdp.amazon.com\/en_US\/title-setup\/paperback\/*\/content*"
],
"js": [
"js\/jquery-3.1.1.min.js",
"js\/content.min.js"
]
}
],
"background": {
"service_worker": "js\/background.js"
},
"options_page": "options.html",
"permissions": [
"storage",
"activeTab"
],
"icons": {
"128": "img\/icon.png"
},
"action": {
"default_popup": "popup.html"
}
} | |