SSS Autofill

Open source autofill extension for Shopify, Supreme and Stripe

SSS Autofill là gì?

SSS Autofill là một tiện ích mở rộng Chrome được phát triển bởi Alexsnkrdev, và tính năng chính của nó là "Open source autofill extension for Shopify, Supreme and Stripe".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng SSS Autofill

Tải xuống các tệp mở rộng SSS Autofill dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên SSS Autofill SSS Autofill
ID gdhmefadngapdfphedlcimcdplachcip
URL Chính Thức https://chromewebstore.google.com/detail/sss-autofill/gdhmefadngapdfphedlcimcdplachcip
Mô tả Open source autofill extension for Shopify, Supreme and Stripe
Kích Thước Tệp 245 KB
Số Lần Cài Đặt 6,016
Phiên Bản Hiện Tại 0.0.8
Cập Nhật Lần Cuối 2019-12-05
Ngày Phát Hành 2019-12-03
Đánh Giá 4.86/5 Tổng số 14 Đánh Giá
Nhà Phát Triển Alexsnkrdev
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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'"
}