├── .eslintignore ├── .eslintrc.cjs ├── .github ├── ISSUE_TEMPLATE │ ├── chinese.yml │ └── config.yml └── workflows │ └── release.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── README_zh_CN.md ├── asset ├── action.png └── org_icon_img.JPG ├── icon.png ├── package.json ├── plugin.json ├── pnpm-lock.yaml ├── preview.png ├── scripts ├── .gitignore └── make_dev_link.js ├── src ├── css_injection.ts ├── dynamic_i18n.ts ├── helper.ts ├── i18n │ ├── en_US.json │ └── zh_CN.json ├── index.scss ├── index.ts ├── libs │ ├── b3-typography.svelte │ ├── index.d.ts │ ├── setting-item.svelte │ ├── setting-panel.svelte │ └── setting-utils.ts ├── sy_hardcoded_name_map.ts └── types │ ├── api.d.ts │ └── index.d.ts ├── svelte.config.js ├── tools └── archive │ └── old_index_with_capablilty_to_remove_old_trash.ts ├── tsconfig.json ├── tsconfig.node.json └── vite.config.ts /.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | -------------------------------------------------------------------------------- /.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxkmm/siyuan_rmv_btn/HEAD/.eslintrc.cjs -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/chinese.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxkmm/siyuan_rmv_btn/HEAD/.github/ISSUE_TEMPLATE/chinese.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false 2 | -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxkmm/siyuan_rmv_btn/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxkmm/siyuan_rmv_btn/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxkmm/siyuan_rmv_btn/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxkmm/siyuan_rmv_btn/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxkmm/siyuan_rmv_btn/HEAD/README.md -------------------------------------------------------------------------------- /README_zh_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxkmm/siyuan_rmv_btn/HEAD/README_zh_CN.md -------------------------------------------------------------------------------- /asset/action.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxkmm/siyuan_rmv_btn/HEAD/asset/action.png -------------------------------------------------------------------------------- /asset/org_icon_img.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxkmm/siyuan_rmv_btn/HEAD/asset/org_icon_img.JPG -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxkmm/siyuan_rmv_btn/HEAD/icon.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxkmm/siyuan_rmv_btn/HEAD/package.json -------------------------------------------------------------------------------- /plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxkmm/siyuan_rmv_btn/HEAD/plugin.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxkmm/siyuan_rmv_btn/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxkmm/siyuan_rmv_btn/HEAD/preview.png -------------------------------------------------------------------------------- /scripts/.gitignore: -------------------------------------------------------------------------------- 1 | .venv 2 | build 3 | dist 4 | *.exe 5 | *.spec 6 | -------------------------------------------------------------------------------- /scripts/make_dev_link.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxkmm/siyuan_rmv_btn/HEAD/scripts/make_dev_link.js -------------------------------------------------------------------------------- /src/css_injection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxkmm/siyuan_rmv_btn/HEAD/src/css_injection.ts -------------------------------------------------------------------------------- /src/dynamic_i18n.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxkmm/siyuan_rmv_btn/HEAD/src/dynamic_i18n.ts -------------------------------------------------------------------------------- /src/helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxkmm/siyuan_rmv_btn/HEAD/src/helper.ts -------------------------------------------------------------------------------- /src/i18n/en_US.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxkmm/siyuan_rmv_btn/HEAD/src/i18n/en_US.json -------------------------------------------------------------------------------- /src/i18n/zh_CN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxkmm/siyuan_rmv_btn/HEAD/src/i18n/zh_CN.json -------------------------------------------------------------------------------- /src/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxkmm/siyuan_rmv_btn/HEAD/src/index.scss -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxkmm/siyuan_rmv_btn/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/libs/b3-typography.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxkmm/siyuan_rmv_btn/HEAD/src/libs/b3-typography.svelte -------------------------------------------------------------------------------- /src/libs/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxkmm/siyuan_rmv_btn/HEAD/src/libs/index.d.ts -------------------------------------------------------------------------------- /src/libs/setting-item.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxkmm/siyuan_rmv_btn/HEAD/src/libs/setting-item.svelte -------------------------------------------------------------------------------- /src/libs/setting-panel.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxkmm/siyuan_rmv_btn/HEAD/src/libs/setting-panel.svelte -------------------------------------------------------------------------------- /src/libs/setting-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxkmm/siyuan_rmv_btn/HEAD/src/libs/setting-utils.ts -------------------------------------------------------------------------------- /src/sy_hardcoded_name_map.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxkmm/siyuan_rmv_btn/HEAD/src/sy_hardcoded_name_map.ts -------------------------------------------------------------------------------- /src/types/api.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxkmm/siyuan_rmv_btn/HEAD/src/types/api.d.ts -------------------------------------------------------------------------------- /src/types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxkmm/siyuan_rmv_btn/HEAD/src/types/index.d.ts -------------------------------------------------------------------------------- /svelte.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxkmm/siyuan_rmv_btn/HEAD/svelte.config.js -------------------------------------------------------------------------------- /tools/archive/old_index_with_capablilty_to_remove_old_trash.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxkmm/siyuan_rmv_btn/HEAD/tools/archive/old_index_with_capablilty_to_remove_old_trash.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxkmm/siyuan_rmv_btn/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxkmm/siyuan_rmv_btn/HEAD/tsconfig.node.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxkmm/siyuan_rmv_btn/HEAD/vite.config.ts --------------------------------------------------------------------------------