SSS Autofill

Open source autofill extension for Shopify, Supreme and Stripe

Qu'est-ce que SSS Autofill ?

SSS Autofill est une extension Chrome développée par Alexsnkrdev, et sa fonction principale est "Open source autofill extension for Shopify, Supreme and Stripe".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension SSS Autofill

Téléchargez les fichiers d'extension SSS Autofill au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom SSS Autofill SSS Autofill
ID gdhmefadngapdfphedlcimcdplachcip
URL Officiel https://chromewebstore.google.com/detail/sss-autofill/gdhmefadngapdfphedlcimcdplachcip
Description Open source autofill extension for Shopify, Supreme and Stripe
Taille du Fichier 245 KB
Nombre d'Installations 6,016
Version Actuelle 0.0.8
Dernière Mise à Jour 2019-12-05
Date de Publication 2019-12-03
Évaluation 4.86/5 Total 14 Évaluations
Développeur Alexsnkrdev
Type de Paiement free
Langues Prises en Charge 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'"
}