SSS Autofill

Open source autofill extension for Shopify, Supreme and Stripe

SSS Autofillとは何ですか?

SSS AutofillはAlexsnkrdevによって開発されたChromeの拡張機能で、その主な機能は「Open source autofill extension for Shopify, Supreme and Stripe」です。

拡張機能のスクリーンショット

screenshot

SSS Autofill拡張機能のCRXファイルをダウンロード

SSS Autofill拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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                    

拡張機能の基本情報

名前 SSS Autofill SSS Autofill
ID gdhmefadngapdfphedlcimcdplachcip
公式URL https://chromewebstore.google.com/detail/sss-autofill/gdhmefadngapdfphedlcimcdplachcip
説明 Open source autofill extension for Shopify, Supreme and Stripe
ファイルサイズ 245 KB
インストール数 6,016
現在のバージョン 0.0.8
最終更新日 2019-12-05
公開日 2019-12-03
評価 4.86/5 合計 14 レビュー
開発者 Alexsnkrdev
支払い方法 free
対応言語 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'"
}