Examine source code of Flow Mark

Inspect and view changes in Flow Mark 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",
  "author": {
    "email": "blushyes@gmail.com"
  },
  "name": "Flow Mark",
  "description": "A browser extension powered by AI, designed to manage bookmarks, tabs, history, and more in your browser.",
  "version": "0.0.3.0",
  "version_name": "0.0.3",
  "manifest_version": 3,
  "action": {
    "default_popup": "src/ui/action-popup/index.html"
  },
  "background": {
    "service_worker": "service-worker-loader.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "js": [
        "assets/index.ts-loader-ClNkYLTy.js"
      ],
      "all_frames": false,
      "matches": [
        "*://*/*"
      ],
      "css": [
        "assets/index-CCELYEuE.css"
      ]
    }
  ],
  "offline_enabled": false,
  "host_permissions": [
    "<all_urls>"
  ],
  "permissions": [
    "storage",
    "tabs",
    "bookmarks",
    "background"
  ],
  "web_accessible_resources": [
    {
      "matches": [
        "<all_urls>"
      ],
      "resources": [
        "src/ui/setup/index.html",
        "src/ui/content-script-iframe/index.html"
      ],
      "use_dynamic_url": false
    },
    {
      "matches": [
        "*://*/*"
      ],
      "resources": [
        "assets/logger-Blk_YrZe.js",
        "assets/index.ts-DYIn4cz0.js"
      ],
      "use_dynamic_url": false
    }
  ],
  "icons": {
    "16": "src/assets/logo.png",
    "24": "src/assets/logo.png",
    "32": "src/assets/logo.png",
    "128": "src/assets/logo.png"
  },
  "commands": {
    "toggle-tab-sets": {
      "suggested_key": {
        "default": "Ctrl+B",
        "mac": "Command+B"
      },
      "description": "打开/关闭标签集管理面板"
    }
  }
}