Examine source code of SimpleShopping

Inspect and view changes in SimpleShopping 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",
  "name": "SimpleShopping",
  "description": "Easily open eCommerce sites of your choice with the your search text pre-filled. Supports custom sites!",
  "version": "1.1",
  "manifest_version": 3,
  "action": {
    "default_popup": "index.html",
    "default_title": "SimpleShopping"
  },
  "icons": {
    "16": "/icons/logo16.png",
    "48": "/icons/logo48.png",
    "128": "/icons/logo128.png"
  },
  "permissions": [
    "activeTab",
    "contextMenus",
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "./static/js/content.js"
      ]
    }
  ],
  "background": {
    "service_worker": "./static/js/background.js"
  }
}