Assist by SoleSavy

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.

Additional files are visible only to premium users

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