BigCommerce SEO Helper

BigCommerce SEO Helper

Currently it adds search result preview widgets to the SEO sections in BigCommerce admin, as well as a few other tweaks.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "BigCommerce SEO Helper",
  "description": "Currently it adds search result preview widgets to the SEO sections in BigCommerce admin, as well as a few other tweaks.",
  "version": "0.0.1.3",
  "author": "Tony McCreath",
  "icons": {
    "16": "images/WebSiteAdvantage-m-16.png",
    "32": "images/WebSiteAdvantage-m-32.png",
    "48": "images/WebSiteAdvantage-m-48.png",
    "64": "images/WebSiteAdvantage-m-64.png",
    "128": "images/WebSiteAdvantage-m-128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.mybigcommerce.com/admin/index.php*",
        "https://*.mybigcommerce.com/manage/microapps/*",
        "https://*.mybigcommerce.com/admin/blog/post*",
        "https://*.mybigcommerce.com/admin/blog/settings",
        "https://*.mybigcommerce.com/manage/products/category-manager*"
      ],
      "js": [
        "jquery-3.5.1.min.js",
        "wsa-bigcommerce.js"
      ],
      "all_frames": true
    }
  ],
  "permissions": [],
  "web_accessible_resources": [
    {
      "resources": [
        "webSiteAdvantage.OrganicSearchResult.js",
        "webSiteAdvantage.OrganicSearchResult.min.js",
        "wsa-initialise.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'; script-src-elem 'self';"
  }
}