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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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!
확장 프로그램 기본 정보
이름 | KDP Autofill |
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" } } |