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.”。
擴展截圖
下載Assist by SoleSavy擴展crx文件
下載Assist by SoleSavy擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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/. 擴展基本資訊
| 名稱 | |
| ID | fbglcckkpnofkibjakkfbmkhfmkcappm |
| 官方網址 | 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"
]
} | |