SSS Autofill

Open source autofill extension for Shopify, Supreme and Stripe

Co je SSS Autofill?

SSS Autofill je rozšíření Chrome vyvinuté Alexsnkrdev, a jeho hlavní funkcí je „Open source autofill extension for Shopify, Supreme and Stripe“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření SSS Autofill

Stáhněte si soubory rozšíření SSS Autofill ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        Open source autofill extension to assist the filling of checkout forms, increasing your chance of purchasing limited release items.
Currently Supporting:
- Shopify
   - Navigate the checkout steps
   - Automatically complete checkout
- Supreme
   - Automatic checkout
- Stripe

https://github.com/alexsnkr/sss-autofill
https://twitter.com/alexsnkrdev                    

Základní Informace o Rozšíření

Název SSS Autofill SSS Autofill
ID gdhmefadngapdfphedlcimcdplachcip
Oficiální URL https://chromewebstore.google.com/detail/sss-autofill/gdhmefadngapdfphedlcimcdplachcip
Popis Open source autofill extension for Shopify, Supreme and Stripe
Velikost souboru 245 KB
Počet instalací 6,016
Aktuální Verze 0.0.8
Poslední Aktualizace 2019-12-05
Datum Vydání 2019-12-03
Hodnocení 4.86/5 Celkem 14 Hodnocení
Vývojář Alexsnkrdev
Typ Platby free
Podporované Jazyky en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "SSS Autofill",
    "description": "Open source autofill extension for Shopify, Supreme and Stripe",
    "version": "0.0.8",
    "manifest_version": 2,
    "icons": {
        "48": "icons\/icon_48.png",
        "128": "icons\/icon_128.png"
    },
    "browser_action": {
        "default_title": "sss-autofill",
        "default_popup": "popup\/popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "permissions": [
        "activeTab",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "inject\/all.js"
            ],
            "all_frames": true
        },
        {
            "matches": [
                "https:\/\/js.stripe.com\/*"
            ],
            "js": [
                "inject\/stripe.js"
            ],
            "all_frames": true
        },
        {
            "matches": [
                "https:\/\/www.supremenewyork.com\/checkout"
            ],
            "js": [
                "inject\/supreme.js"
            ]
        },
        {
            "matches": [
                "https:\/\/*\/*\/checkouts\/*"
            ],
            "js": [
                "inject\/shopify.js"
            ]
        },
        {
            "matches": [
                "https:\/\/*.shopifycs.com\/*"
            ],
            "js": [
                "inject\/shopify-card.js"
            ],
            "all_frames": true
        }
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}