Examine source code of OpeniTab

Inspect and view changes in OpeniTab 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": "OpeniTab",
  "description": "OpeniTab新标签页,你可以快捷添加喜爱的网站到书签,内置实用插件,数据云端同步以及本地备份。",
  "version": "1.9.9",
  "manifest_version": 3,
  "icons": {
    "64": "icon/64.png",
    "128": "icon/128.png",
    "192": "icon/192.png"
  },
  "externally_connectable": {
    "matches": [
      "*://tab.openi.cn/*"
    ]
  },
  "background": {
    "service_worker": "src/background.js"
  },
  "permissions": [
    "background",
    "cookies",
    "bookmarks",
    "favicon"
  ],
  "action": {
    "default_icon": "icon/64.png",
    "default_title": "OpeniTab"
  },
  "host_permissions": [
    "*://tab.openi.cn/*",
    "*://*.baidu.com/*"
  ],
  "chrome_url_overrides": {
    "newtab": "dist/index.html"
  }
}