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'"
}