Shopify App Store Enhancer

Shopify App Store Enhancer

Add more informations for each app when browsing Shopify App Store

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Shopify App Store Enhancer",
  "version": "0.2.0",
  "description": "Add more informations for each app when browsing Shopify App Store",
  "icons": {
    "16": "icons/shopify_app_store_enhancer.png",
    "32": "icons/shopify_app_store_enhancer.png",
    "48": "icons/shopify_app_store_enhancer.png",
    "128": "icons/shopify_app_store_enhancer.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://apps.shopify.com/",
        "https://apps.shopify.com/search*",
        "https://apps.shopify.com/browse*",
        "https://apps.shopify.com/recommendations/*",
        "https://apps.shopify.com/categories/*"
      ],
      "js": [
        "apps.js"
      ],
      "css": [
        "styles.css"
      ]
    },
    {
      "matches": [
        "https://apps.shopify.com/*?*surface_detail=*&surface_inter_position=*&surface_intra_position=*"
      ],
      "js": [
        "app.js"
      ],
      "css": [
        "styles.css"
      ]
    }
  ]
}