Examine source code of SmartSync: SmartWiz Data Entry Assistant

Inspect and view changes in SmartSync: SmartWiz Data Entry Assistant source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "SmartSync: SmartWiz Data Entry Assistant",
  "version": "0.6.8",
  "description": "Integrate with your tax software for data imports.",
  "permissions": [
    "scripting",
    "sidePanel",
    "activeTab",
    "clipboardRead",
    "tabs",
    "storage"
  ],
  "host_permissions": [
    "https://*.taxwise.com/*",
    "https://*.cloudtaxoffice.com/*",
    "https://*.taxslayerpro.com/*",
    "https://*.taxslayer.com/*",
    "https://app.smartwiz.io/*",
    "https://smartwiz.link/*"
  ],
  "icons": {
    "16": "images/icons/icon16.png",
    "48": "images/icons/icon48.png",
    "128": "images/icons/icon128.png"
  },
  "action": {
    "default_title": "Open Side Panel"
  },
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "side_panel": {
    "default_path": "side_panel.html"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.taxwise.com/Ajax/ViewReturn.aspx*",
        "https://*.cloudtaxoffice.com/*",
        "https://*.taxslayerpro.com/*",
        "https://*.taxslayer.com/*",
        "https://app.smartwiz.io/*",
        "https://smartwiz.link/*",
        "http://localhost:5173/*"
      ],
      "js": [
        "ContentScript/contentScript.js",
        "lib/notie.js",
        "lib/popper.min.js",
        "lib/tippy.all.min.js",
        "Tax Softwares/taxslayer.js",
        "Tax Softwares/taxwise.js",
        "utils/constants/allowedUrls.js",
        "lib/zoomist.js"
      ],
      "css": [
        "lib/notie.css",
        "lib/zoomist.css",
        "ContentScript/content.css"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "lib/notie.js",
        "lib/notie.css",
        "lib/popper.min.js",
        "lib/tippy.all.min.js",
        "lib/zoomist.js",
        "lib/zoomist.css",
        "utils/constants/allowedUrls.js",
        "images/icons/sw-head-glasses.svg"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}