Assist by SoleSavy

A faster autofill for sneaker enthusiasts. Assist will auto-fill your info and take you to the payment page in fewer clicks.

Assist by SoleSavy란 무엇입니까?

Assist by SoleSavy은(는) SoleSavy에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A faster autofill for sneaker enthusiasts. Assist will auto-fill your info and take you to the payment page in fewer clicks."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

Assist by SoleSavy 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Assist by SoleSavy is your sneaker-shopping companion. There’s a lot of competition for sneakers these days, so we’ve built Assist to give our members a leg up.

Super fast autofill:
Assist gives you a better chance at snagging the shoes you want on release day by automatically completing your shipping and billing information.

Fewer clicks to checkout:
With “Auto-Select Shipping Option” enabled, you’ll breeze through the checkout process and be taken directly to the final payment page. Fewer clicks = faster checkout time!

Avoid shipping errors:
Have more confidence when you purchase - no more missed apartment numbers when you’re in a rush. Assist is tailor made for Shopify stores, so it won’t skip a beat.

Easy setup:
It only takes a moment to get started. 

By using this extension, you agree to the SoleSavy’s Terms & Conditions available at https://solesavy.com/tos/.                    

확장 프로그램 기본 정보

이름 Assist by SoleSavy Assist by SoleSavy
ID fbglcckkpnofkibjakkfbmkhfmkcappm
공식 URL https://chromewebstore.google.com/detail/assist-by-solesavy/fbglcckkpnofkibjakkfbmkhfmkcappm
설명 A faster autofill for sneaker enthusiasts. Assist will auto-fill your info and take you to the payment page in fewer clicks.
파일 크기 535 KB
설치 횟수 2,654
현재 버전 1.0.4
최근 업데이트 2022-12-17
출시 날짜 2021-09-30
평점 4.63/5 총 19 개의 평점
개발자 SoleSavy
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://solesavy.com
도움말 페이지 URL http://solesavy.com/contact
개인정보 보호 정책 페이지 URL https://solesavy.com/privacy-policy
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "A faster autofill for sneaker enthusiasts. Assist will auto-fill your info and take you to the payment page in fewer clicks.",
    "version": "1.0.4",
    "manifest_version": 3,
    "name": "Assist by SoleSavy",
    "author": "SoleSavy Inc.",
    "background": {
        "service_worker": "background.bundle.js"
    },
    "action": {
        "default_popup": "popup.html",
        "default_icon": "iconGrayscale64.png"
    },
    "icons": {
        "16": "iconGrayscale16.png",
        "24": "iconGrayscale24.png",
        "32": "iconGrayscale32.png",
        "64": "iconGrayscale64.png",
        "128": "iconGrayscale128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*\/checkouts\/*"
            ],
            "js": [
                "shopifyScript.bundle.js"
            ]
        },
        {
            "matches": [
                "https:\/\/*\/checkouts\/c\/*"
            ],
            "js": [
                "shopifyScript.bundle.js"
            ]
        },
        {
            "matches": [
                "https:\/\/*.shopifycs.com\/*"
            ],
            "js": [
                "shopifyBillingScript.bundle.js"
            ],
            "all_frames": true
        }
    ],
    "devtools_page": "devtools.html",
    "web_accessible_resources": [
        {
            "resources": [
                "icon128.png",
                "icon.png",
                "iconGrayscale128.png",
                "MADE-Tommy-Soft-Regular.otf",
                "MADE-Tommy-Soft-Medium.otf",
                "MADE-Tommy-Soft-Bold.otf",
                "LabGrotesque-Regular.ttf",
                "LabGrotesque-Medium.ttf",
                "LabGrotesque-Bold.ttf"
            ],
            "matches": []
        }
    ],
    "permissions": [
        "storage"
    ]
}