KDP Autofill

KDP Auto-Fill helps you upload your books much faster with auto fill system to save you time and the hustle.

Vad är KDP Autofill?

KDP Autofill är en Chrome-tillägg utvecklad av https://www.mercherworld.com, och dess huvudfunktion är "KDP Auto-Fill helps you upload your books much faster with auto fill system to save you time and the hustle.".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner KDP Autofill-förlängningens CRX-fil

Ladda ner KDP Autofill-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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!                    

Grundläggande Information om Tillägg

Namn KDP Autofill KDP Autofill
ID hkaaadbdciidjlkjdlhagcomlinjeffp
Officiell webbadress https://chromewebstore.google.com/detail/kdp-autofill/hkaaadbdciidjlkjdlhagcomlinjeffp
Beskrivning KDP Auto-Fill helps you upload your books much faster with auto fill system to save you time and the hustle.
Filstorlek 99.69 KB
Antal Installationer 6,187
Aktuell Version 2.0.0.4
Senast Uppdaterad 2022-10-22
Publiceringsdatum 2020-01-12
Betyg 3.91/5 Totalt 35 Betyg
Utvecklare https://www.mercherworld.com
E-post [email protected]
Betalningssätt in_app
Tilläggswebbplats https://autofill.mercherworld.com/
Hjälpsida URL https://autofill.mercherworld.com/
URL till Sekretesspolicy Sidan https://mercherworld.com/privacy-policy
Stödda Språk 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"
    }
}