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 |
| 电子邮箱 | [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"
}
} | |