├── .github └── workflows │ └── release.yml ├── .gitignore ├── LICENSE ├── README.md ├── images └── focus.png ├── manifest.json ├── package.json ├── rollup.config.js ├── src ├── main.ts └── settings.ts ├── styles.css ├── tsconfig.json └── versions.json /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skipadu/obsidian-ghost-fade-focus/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skipadu/obsidian-ghost-fade-focus/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skipadu/obsidian-ghost-fade-focus/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skipadu/obsidian-ghost-fade-focus/HEAD/README.md -------------------------------------------------------------------------------- /images/focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skipadu/obsidian-ghost-fade-focus/HEAD/images/focus.png -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skipadu/obsidian-ghost-fade-focus/HEAD/manifest.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skipadu/obsidian-ghost-fade-focus/HEAD/package.json -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skipadu/obsidian-ghost-fade-focus/HEAD/rollup.config.js -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skipadu/obsidian-ghost-fade-focus/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skipadu/obsidian-ghost-fade-focus/HEAD/src/settings.ts -------------------------------------------------------------------------------- /styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skipadu/obsidian-ghost-fade-focus/HEAD/styles.css -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skipadu/obsidian-ghost-fade-focus/HEAD/tsconfig.json -------------------------------------------------------------------------------- /versions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skipadu/obsidian-ghost-fade-focus/HEAD/versions.json --------------------------------------------------------------------------------