Carton Sorter

Carton Sorter

Automatically sorts table rows on specific lululemon pages

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Carton Sorter",
  "description": "Automatically sorts table rows on specific lululemon pages",
  "version": "6.0",
  "permissions": [
    "activeTab",
    "scripting"
  ],
  "host_permissions": [
    "http://acp-scitodc-01.lululemoninternal.com/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://acp-scitodc-01.lululemoninternal.com/*"
      ],
      "js": [
        "firebase-app-compat.js",
        "firebase-database-compat.js",
        "sorter.js"
      ],
      "run_at": "document_end"
    }
  ],
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  }
}