Examine source code of Highlightion - Save Highlights to Notion

Inspect and view changes in Highlightion - Save Highlights to Notion 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": "__MSG_ext_fulltitle__",
  "description": "__MSG_ext_description__",
  "manifest_version": 3,
  "version": "1.3.0",
  "permissions": [
    "storage"
  ],
  "default_locale": "en",
  "icons": {
    "16": "assets/icon16.png",
    "32": "assets/icon32.png",
    "48": "assets/icon48.png",
    "128": "assets/icon128.png"
  },
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "assets/icon16.png",
      "32": "assets/icon32.png",
      "48": "assets/icon48.png",
      "128": "assets/icon128.png"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "https://*/*"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_end"
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "options_page": "options.html",
  "commands": {
    "openPopupWindow": {
      "suggested_key": {
        "default": "Ctrl+H",
        "mac": "MacCtrl+H"
      },
      "description": "Open Pop-up Window"
    }
  },
  "host_permissions": [
    "https://*.digitalworldturbo.com/",
    "https://api.notion.com/*"
  ],
  "externally_connectable": {
    "matches": [
      "http://127.0.0.1:3000/*",
      "https://*.highlightion.com/*"
    ]
  }
}