CheckoutBreeze

Automate Shopify test purchases - save time and clicks

Τι είναι το CheckoutBreeze;

Το CheckoutBreeze είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Niklas Wenzel, και η κύρια λειτουργία του είναι "Automate Shopify test purchases - save time and clicks".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης CheckoutBreeze

Λήψη αρχείων επέκτασης CheckoutBreeze σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        When developing Shopify apps, you likely have to go through the checkout flow over and over again when making test purchases. Doing so manually consumes time and mind space.

CheckoutBreeze automates this process for you. It automatically fills in each field and completes your test order in seconds. It's fast and you don't have to think about it.

NOTE: CheckoutBreeze uses test credit cards provided by Shopify. It's not designed to make real purchases with real credit cards.

Requirements for the app to work:

* The store has test payments or the Bogus Gateway enabled
* Credit card or the Bogus Gateway is the default payment method of the store
* You must not click into / shift focus into another window while autofilling

Hint: Pin the extension to be able to quickly toggle it on and off!

---

Sometimes Shopify updates their checkout or runs A/B tests that break CheckoutBreeze. In these cases, please try to delete site data (cookies, local storage, etc.) for your shop and/or send me an email. I'll look into it.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα CheckoutBreeze CheckoutBreeze
ID ehahbpbockhkkilepnnpbkacojjlanij
Επίσημο URL https://chromewebstore.google.com/detail/checkoutbreeze/ehahbpbockhkkilepnnpbkacojjlanij
Περιγραφή Automate Shopify test purchases - save time and clicks
Μέγεθος Αρχείου 14.85 KB
Αριθμός Εγκαταστάσεων 57
Τρέχουσα Έκδοση 1.4
Τελευταία Ενημέρωση 2023-01-05
Ημερομηνία Δημοσίευσης 2022-12-15
Αξιολόγηση 5.00/5 Συνολικά 2 Αξιολογήσεις
Προγραμματιστής Niklas Wenzel
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
URL της Σελίδας Πολιτικής Απορρήτου https://www.nikwen.de/datenschutz
Υποστηριζόμενες Γλώσσες en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "CheckoutBreeze",
    "version": "1.4",
    "description": "Automate Shopify test purchases - save time and clicks",
    "author": "Niklas Wenzel",
    "icons": {
        "128": "icons\/app128.png",
        "48": "icons\/app48.png"
    },
    "permissions": [
        "activeTab",
        "storage",
        "webRequest"
    ],
    "host_permissions": [
        ""
    ],
    "background": {
        "service_worker": "serviceWorker.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content\/shared.js",
                "content\/main.js"
            ]
        },
        {
            "matches": [
                "*:\/\/checkout.shopifycs.com\/*"
            ],
            "all_frames": true,
            "js": [
                "content\/shared.js",
                "content\/iframe.js"
            ]
        }
    ],
    "options_page": "options.html",
    "action": {
        "default_icon": "icons\/on.png"
    }
}