Examine source code of MinTab

Inspect and view changes in MinTab 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
{
  "manifest_version": 3,
  "name": "__MSG_extName__",
  "description": "__MSG_extDescription__",
  "version": "0.1.7",
  "icons": {
    "128": "images/icon_128.png",
    "256": "images/icon_256.png"
  },
  "default_locale": "zh_CN",
  "minimum_chrome_version": "88",
  "action": {
    "default_icon": {
      "128": "images/icon_128.png",
      "256": "images/icon_256.png"
    },
    "default_popup": "popup.html"
  },
  "chrome_url_overrides": {
    "newtab": "newtab.html"
  },
  "chrome_settings_overrides": {
    "homepage": "https://go.mintab.cn/"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.mintab.cn/*",
        "https://mintab.cn/*"
      ],
      "js": [
        "scripts/customize-start.js"
      ],
      "run_at": "document_end",
      "all_frames": true
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "wallpapers/*"
      ],
      "matches": [
        "https://*.mintab.cn/*",
        "https://mintab.cn/*"
      ]
    }
  ],
  "permissions": [
    "storage"
  ],
  "homepage_url": "https://go.mintab.cn",
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}