Examine source code of Sidekick Learn

Inspect and view changes in Sidekick Learn 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": "Sidekick Learn",
  "description": "Remind you and make you learn new knowledge everyday, a bite at a time",
  "version": "1.3.5",
  "icons": {
    "16": "./assets/img/icon-180x180.png",
    "48": "./assets/img/icon-180x180.png",
    "128": "./assets/img/icon-180x180.png"
  },
  "background": {
    "service_worker": "./background.js"
  },
  "permissions": [
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "./node_modules/webextension-polyfill/dist/browser-polyfill.js",
        "./dist/content.bundle.js"
      ]
    }
  ],
  "action": {
    "default_title": "Sidekick Learn",
    "default_popup": "popup.html"
  },
  "externally_connectable": {
    "matches": [
      "http://localhost:3000/*",
      "http://localhost:9000/*",
      "https://sidekicklearn.com/*"
    ]
  }
}