├── .github └── workflows │ └── publish.yml ├── .gitignore ├── LICENSE ├── README.md ├── demo1.gif ├── demo2.gif ├── demo3.gif ├── demo4.gif ├── icon.svg ├── index.html ├── index.js └── package.json /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studyduck/logseq-save-scrollbar-position/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | node_modules 3 | .parcel-cache 4 | dist 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studyduck/logseq-save-scrollbar-position/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studyduck/logseq-save-scrollbar-position/HEAD/README.md -------------------------------------------------------------------------------- /demo1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studyduck/logseq-save-scrollbar-position/HEAD/demo1.gif -------------------------------------------------------------------------------- /demo2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studyduck/logseq-save-scrollbar-position/HEAD/demo2.gif -------------------------------------------------------------------------------- /demo3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studyduck/logseq-save-scrollbar-position/HEAD/demo3.gif -------------------------------------------------------------------------------- /demo4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studyduck/logseq-save-scrollbar-position/HEAD/demo4.gif -------------------------------------------------------------------------------- /icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studyduck/logseq-save-scrollbar-position/HEAD/icon.svg -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studyduck/logseq-save-scrollbar-position/HEAD/index.html -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studyduck/logseq-save-scrollbar-position/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studyduck/logseq-save-scrollbar-position/HEAD/package.json --------------------------------------------------------------------------------