gitextract_mc_ej1hd/ ├── .eslintrc.json ├── .gitignore ├── .prettierrc ├── .vscode/ │ ├── extensions.json │ ├── launch.json │ └── settings.json ├── .vscodeignore ├── .yarnrc ├── CHANGELOG.md ├── LICENSE ├── README.md ├── build/ │ ├── node-extension.webpack.config.js │ └── react-webview.webpack.config.js ├── package.json ├── resources/ │ └── styles/ │ ├── notion.css │ ├── prism.css │ ├── reset.css │ └── vscode.css ├── src/ │ ├── CommandManager.ts │ ├── commands/ │ │ ├── BookmarkPage.ts │ │ ├── ClearRecents.ts │ │ ├── CopyLink.ts │ │ ├── OpenPage.ts │ │ ├── RefreshBookmarks.ts │ │ ├── RefreshPage.ts │ │ ├── RefreshRecents.ts │ │ ├── RemoveRecent.ts │ │ ├── UnBookmarkPage.ts │ │ └── index.ts │ ├── extension.ts │ ├── features/ │ │ ├── BookmarksProvider.ts │ │ ├── NotionConfig.ts │ │ ├── NotionItem.ts │ │ ├── NotionPanel.ts │ │ ├── NotionPanelManager.ts │ │ └── RecentsProvider.ts │ ├── sources.ts │ ├── types.d.ts │ ├── utils/ │ │ ├── escapeAttribute.ts │ │ ├── fetchData.ts │ │ ├── getNonce.ts │ │ ├── getTitle.ts │ │ └── parseId.ts │ └── webview/ │ ├── App.tsx │ ├── index.tsx │ └── tsconfig.json └── tsconfig.json