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 - это расширение Chrome, разработанное https://www.mercherworld.com, и его основная функция - "KDP Auto-Fill helps you upload your books much faster with auto fill system to save you time and the hustle.".

Снимки экрана расширения

screenshot
screenshot

Скачать файл CRX расширения KDP Autofill

Скачайте файлы расширений 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!                    

Основная информация о расширении

Название KDP Autofill 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"
    }
}