Merch Ad Automator

Create AMS ads on the fly. Spend less time creating ads and take your Amazon Merch business to the next level.

Vad är Merch Ad Automator?

Merch Ad Automator är en Chrome-tillägg utvecklad av https://merchamigo.com, och dess huvudfunktion är "Create AMS ads on the fly. Spend less time creating ads and take your Amazon Merch business to the next level.".

Tilläggsskärmbilder

screenshot
screenshot
screenshot
screenshot

Ladda ner Merch Ad Automator-förlängningens CRX-fil

Ladda ner Merch Ad Automator-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

                        Integrated smoothly with your Merch by Amazon dashboard empowering you to create AMS ads on the fly. Spend less time creating ads and take your Amazon Merch business to the next level.

- You can now create PopSocket ads
- Better dashboard integration (extension now lives under it's very own Ads tab)

KDP ads are here!

KDP offers a free AMS access to their users, separate from your Merch by Amazon AMS account, which should also be available to people who do not currently have a Merch by Amazon AMS account. 

1. How to set up your KDP AMS account:

- When you open your KDP bookshelf you will see a "Promote and Advertise" button for every product (Under PAPERBACK ACTIONS for every listing)
- Clicking on this link will let you access your KDP AMS account
- You will, same as with MBA, need to copy your KDP Entity ID from the URL and paste it into the corresponding "Setting" field of the Merch Ad Automator extension

2. How to get your KDP Entity ID:

- When on your KDP AMS account you can copy the ID from the URL field
- advertising.amazon.com/cb?entityId=ENTITY24FL8675GTHRE9A6 - you just need to copy the uppercase letters and numbers from the URL. In the example URL above my Entity ID would be: ENTITY24FL8675GTHRE9A6                    

Grundläggande Information om Tillägg

Namn Merch Ad Automator Merch Ad Automator
ID mioidjjcnkjcaflfjpkeblogdplchdfn
Officiell webbadress https://chromewebstore.google.com/detail/merch-ad-automator/mioidjjcnkjcaflfjpkeblogdplchdfn
Beskrivning Create AMS ads on the fly. Spend less time creating ads and take your Amazon Merch business to the next level.
Filstorlek 382 KB
Antal Installationer 645
Aktuell Version 1.4.3
Senast Uppdaterad 2021-02-23
Publiceringsdatum 2020-03-17
Betyg 4.20/5 Totalt 5 Betyg
Utvecklare https://merchamigo.com
E-post [email protected]
Betalningssätt in_app
Tilläggswebbplats https://merchamigo.com
URL till Sekretesspolicy Sidan https://merchamigo.com/privacy-policy.html
Stödda Språk en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Merch Ad Automator",
    "version": "1.4.3",
    "description": "Create AMS ads on the fly. Spend less time creating ads and take your Amazon Merch business to the next level.",
    "manifest_version": 2,
    "short_name": "MAA",
    "icons": {
        "16": "img\/icon16.png",
        "48": "img\/icon48.png",
        "128": "img\/icon128.png"
    },
    "browser_action": {
        "default_icon": "img\/icon128.png",
        "default_popup": "html\/popup.html",
        "default_title": "Create AMS ads on the fly. Spend less time creating ads and take your Amazon Merch business to the next level."
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/advertising.amazon.com\/*",
                "https:\/\/advertising.amazon.de\/*",
                "https:\/\/advertising.amazon.co.uk\/*",
                "https:\/\/advertising.amazon.es\/*",
                "https:\/\/advertising.amazon.it\/*",
                "https:\/\/advertising.amazon.fr\/*"
            ],
            "run_at": "document_start",
            "js": [
                "js\/inject.js"
            ]
        },
        {
            "matches": [
                "https:\/\/merch.amazon.com\/manage\/designs?ads*"
            ],
            "run_at": "document_start",
            "js": [
                "js\/merch-ads-page.js",
                "js\/d3.min.js",
                "js\/c3.min.js"
            ],
            "css": [
                "css\/bootstrap.css",
                "css\/modal-dialog.css",
                "css\/themify-icons.css",
                "css\/c3.min.css"
            ]
        },
        {
            "matches": [
                "https:\/\/merch.amazon.com\/*"
            ],
            "exclude_matches": [
                "https:\/\/merch.amazon.com\/landing*",
                "https:\/\/*\/MerchAnalytics\/*",
                "https:\/\/*\/IndividualProductPage\/*"
            ],
            "run_at": "document_start",
            "js": [
                "js\/merch-ads-menu.js"
            ]
        },
        {
            "matches": [
                "https:\/\/kdp.amazon.com\/*\/bookshelf*"
            ],
            "run_at": "document_start",
            "js": [
                "js\/kdp-content.js"
            ],
            "css": [
                "css\/modal-dialog.css"
            ]
        }
    ],
    "permissions": [
        "https:\/\/members.merchamigo.com\/*",
        "https:\/\/amazon.com\/*",
        "https:\/\/*.amazon.com\/*",
        "https:\/\/*.amazon.co.uk\/*",
        "https:\/\/amazon.co.uk\/*",
        "https:\/\/*.amazon.de\/*",
        "https:\/\/amazon.de\/*",
        "https:\/\/*.amazon.es\/*",
        "https:\/\/amazon.es\/*",
        "https:\/\/*.amazon.it\/*",
        "https:\/\/amazon.it\/*",
        "https:\/\/*.amazon.fr\/*",
        "https:\/\/amazon.fr\/*",
        "https:\/\/advertising.amazon.com\/*",
        "activeTab",
        "unlimitedStorage",
        "tabs",
        "storage"
    ],
    "background": {
        "persistent": true,
        "scripts": [
            "js\/jquery.min.js",
            "js\/background.js"
        ]
    },
    "web_accessible_resources": [
        "js\/inline.js",
        "fonts\/*"
    ]
}