├── .github └── workflows │ ├── bundle-findbar.yml │ └── update-theme-and-format.yml ├── .gitignore ├── .prettierignore ├── .prettierrc.json ├── LICENSE ├── command-palette ├── all-commands.js ├── command-palette.uc.js ├── dynamic-commands.js ├── preferences.json ├── readme.md ├── settings.js ├── style.css ├── theme.json └── utils │ ├── prefs.js │ └── storage.js ├── findbar-ai ├── browse-bot.uc.js ├── findbar-ai.uc.js ├── llm │ ├── index.js │ ├── more-tools.js │ ├── providers.js │ └── tools.js ├── messageManager.js ├── preferences.json ├── readme.md ├── settings.js ├── style.css ├── styles │ ├── findbar.css │ ├── markdown.css │ ├── pseudo-bg.css │ ├── settings.css │ └── urlbar.css ├── theme.json ├── urlbar.uc.js └── utils │ └── prefs.js ├── floating-sidebar ├── floating-sidebar.uc.js ├── readme.md ├── style.css └── theme.json ├── import.uc.mjs ├── import2.uc.mjs ├── key.uc.mjs ├── package.json ├── readme.md ├── reopen-closed-tabs ├── preferences.json ├── readme.md ├── reopen-closed-tabs.uc.js ├── style.css ├── theme.json └── utils │ ├── prefs.js │ └── tab-manager.js ├── rollup.config.js ├── search-engine-icon └── search-engine-icon.uc.js ├── search-engine-select ├── preferences.json ├── readme.md ├── search-engine-select.uc.js ├── style.css └── theme.json ├── settings-shortcuts-search ├── image.png ├── readme.md ├── settings-shortcuts-search.uc.js ├── style.css └── theme.json ├── userChrome.css ├── userContent.css ├── utils ├── getPref.mjs ├── icon.js ├── keyboard.js ├── parse.js ├── timesAgo.js └── toast.mjs └── widgets.uc.mjs /.github/workflows/bundle-findbar.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BibekBhusal0/zen-custom-js/HEAD/.github/workflows/bundle-findbar.yml -------------------------------------------------------------------------------- /.github/workflows/update-theme-and-format.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BibekBhusal0/zen-custom-js/HEAD/.github/workflows/update-theme-and-format.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BibekBhusal0/zen-custom-js/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BibekBhusal0/zen-custom-js/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BibekBhusal0/zen-custom-js/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BibekBhusal0/zen-custom-js/HEAD/LICENSE -------------------------------------------------------------------------------- /command-palette/all-commands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BibekBhusal0/zen-custom-js/HEAD/command-palette/all-commands.js -------------------------------------------------------------------------------- /command-palette/command-palette.uc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BibekBhusal0/zen-custom-js/HEAD/command-palette/command-palette.uc.js -------------------------------------------------------------------------------- /command-palette/dynamic-commands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BibekBhusal0/zen-custom-js/HEAD/command-palette/dynamic-commands.js -------------------------------------------------------------------------------- /command-palette/preferences.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BibekBhusal0/zen-custom-js/HEAD/command-palette/preferences.json -------------------------------------------------------------------------------- /command-palette/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BibekBhusal0/zen-custom-js/HEAD/command-palette/readme.md -------------------------------------------------------------------------------- /command-palette/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BibekBhusal0/zen-custom-js/HEAD/command-palette/settings.js -------------------------------------------------------------------------------- /command-palette/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BibekBhusal0/zen-custom-js/HEAD/command-palette/style.css -------------------------------------------------------------------------------- /command-palette/theme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BibekBhusal0/zen-custom-js/HEAD/command-palette/theme.json -------------------------------------------------------------------------------- /command-palette/utils/prefs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BibekBhusal0/zen-custom-js/HEAD/command-palette/utils/prefs.js -------------------------------------------------------------------------------- /command-palette/utils/storage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BibekBhusal0/zen-custom-js/HEAD/command-palette/utils/storage.js -------------------------------------------------------------------------------- /findbar-ai/browse-bot.uc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BibekBhusal0/zen-custom-js/HEAD/findbar-ai/browse-bot.uc.js -------------------------------------------------------------------------------- /findbar-ai/findbar-ai.uc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BibekBhusal0/zen-custom-js/HEAD/findbar-ai/findbar-ai.uc.js -------------------------------------------------------------------------------- /findbar-ai/llm/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BibekBhusal0/zen-custom-js/HEAD/findbar-ai/llm/index.js -------------------------------------------------------------------------------- /findbar-ai/llm/more-tools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BibekBhusal0/zen-custom-js/HEAD/findbar-ai/llm/more-tools.js -------------------------------------------------------------------------------- /findbar-ai/llm/providers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BibekBhusal0/zen-custom-js/HEAD/findbar-ai/llm/providers.js -------------------------------------------------------------------------------- /findbar-ai/llm/tools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BibekBhusal0/zen-custom-js/HEAD/findbar-ai/llm/tools.js -------------------------------------------------------------------------------- /findbar-ai/messageManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BibekBhusal0/zen-custom-js/HEAD/findbar-ai/messageManager.js -------------------------------------------------------------------------------- /findbar-ai/preferences.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BibekBhusal0/zen-custom-js/HEAD/findbar-ai/preferences.json -------------------------------------------------------------------------------- /findbar-ai/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BibekBhusal0/zen-custom-js/HEAD/findbar-ai/readme.md -------------------------------------------------------------------------------- /findbar-ai/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BibekBhusal0/zen-custom-js/HEAD/findbar-ai/settings.js -------------------------------------------------------------------------------- /findbar-ai/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BibekBhusal0/zen-custom-js/HEAD/findbar-ai/style.css -------------------------------------------------------------------------------- /findbar-ai/styles/findbar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BibekBhusal0/zen-custom-js/HEAD/findbar-ai/styles/findbar.css -------------------------------------------------------------------------------- /findbar-ai/styles/markdown.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BibekBhusal0/zen-custom-js/HEAD/findbar-ai/styles/markdown.css -------------------------------------------------------------------------------- /findbar-ai/styles/pseudo-bg.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BibekBhusal0/zen-custom-js/HEAD/findbar-ai/styles/pseudo-bg.css -------------------------------------------------------------------------------- /findbar-ai/styles/settings.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BibekBhusal0/zen-custom-js/HEAD/findbar-ai/styles/settings.css -------------------------------------------------------------------------------- /findbar-ai/styles/urlbar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BibekBhusal0/zen-custom-js/HEAD/findbar-ai/styles/urlbar.css -------------------------------------------------------------------------------- /findbar-ai/theme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BibekBhusal0/zen-custom-js/HEAD/findbar-ai/theme.json -------------------------------------------------------------------------------- /findbar-ai/urlbar.uc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BibekBhusal0/zen-custom-js/HEAD/findbar-ai/urlbar.uc.js -------------------------------------------------------------------------------- /findbar-ai/utils/prefs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BibekBhusal0/zen-custom-js/HEAD/findbar-ai/utils/prefs.js -------------------------------------------------------------------------------- /floating-sidebar/floating-sidebar.uc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BibekBhusal0/zen-custom-js/HEAD/floating-sidebar/floating-sidebar.uc.js -------------------------------------------------------------------------------- /floating-sidebar/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BibekBhusal0/zen-custom-js/HEAD/floating-sidebar/readme.md -------------------------------------------------------------------------------- /floating-sidebar/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BibekBhusal0/zen-custom-js/HEAD/floating-sidebar/style.css -------------------------------------------------------------------------------- /floating-sidebar/theme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BibekBhusal0/zen-custom-js/HEAD/floating-sidebar/theme.json -------------------------------------------------------------------------------- /import.uc.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BibekBhusal0/zen-custom-js/HEAD/import.uc.mjs -------------------------------------------------------------------------------- /import2.uc.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BibekBhusal0/zen-custom-js/HEAD/import2.uc.mjs -------------------------------------------------------------------------------- /key.uc.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BibekBhusal0/zen-custom-js/HEAD/key.uc.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BibekBhusal0/zen-custom-js/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BibekBhusal0/zen-custom-js/HEAD/readme.md -------------------------------------------------------------------------------- /reopen-closed-tabs/preferences.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BibekBhusal0/zen-custom-js/HEAD/reopen-closed-tabs/preferences.json -------------------------------------------------------------------------------- /reopen-closed-tabs/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BibekBhusal0/zen-custom-js/HEAD/reopen-closed-tabs/readme.md -------------------------------------------------------------------------------- /reopen-closed-tabs/reopen-closed-tabs.uc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BibekBhusal0/zen-custom-js/HEAD/reopen-closed-tabs/reopen-closed-tabs.uc.js -------------------------------------------------------------------------------- /reopen-closed-tabs/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BibekBhusal0/zen-custom-js/HEAD/reopen-closed-tabs/style.css -------------------------------------------------------------------------------- /reopen-closed-tabs/theme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BibekBhusal0/zen-custom-js/HEAD/reopen-closed-tabs/theme.json -------------------------------------------------------------------------------- /reopen-closed-tabs/utils/prefs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BibekBhusal0/zen-custom-js/HEAD/reopen-closed-tabs/utils/prefs.js -------------------------------------------------------------------------------- /reopen-closed-tabs/utils/tab-manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BibekBhusal0/zen-custom-js/HEAD/reopen-closed-tabs/utils/tab-manager.js -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BibekBhusal0/zen-custom-js/HEAD/rollup.config.js -------------------------------------------------------------------------------- /search-engine-icon/search-engine-icon.uc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BibekBhusal0/zen-custom-js/HEAD/search-engine-icon/search-engine-icon.uc.js -------------------------------------------------------------------------------- /search-engine-select/preferences.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BibekBhusal0/zen-custom-js/HEAD/search-engine-select/preferences.json -------------------------------------------------------------------------------- /search-engine-select/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BibekBhusal0/zen-custom-js/HEAD/search-engine-select/readme.md -------------------------------------------------------------------------------- /search-engine-select/search-engine-select.uc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BibekBhusal0/zen-custom-js/HEAD/search-engine-select/search-engine-select.uc.js -------------------------------------------------------------------------------- /search-engine-select/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BibekBhusal0/zen-custom-js/HEAD/search-engine-select/style.css -------------------------------------------------------------------------------- /search-engine-select/theme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BibekBhusal0/zen-custom-js/HEAD/search-engine-select/theme.json -------------------------------------------------------------------------------- /settings-shortcuts-search/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BibekBhusal0/zen-custom-js/HEAD/settings-shortcuts-search/image.png -------------------------------------------------------------------------------- /settings-shortcuts-search/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BibekBhusal0/zen-custom-js/HEAD/settings-shortcuts-search/readme.md -------------------------------------------------------------------------------- /settings-shortcuts-search/settings-shortcuts-search.uc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BibekBhusal0/zen-custom-js/HEAD/settings-shortcuts-search/settings-shortcuts-search.uc.js -------------------------------------------------------------------------------- /settings-shortcuts-search/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BibekBhusal0/zen-custom-js/HEAD/settings-shortcuts-search/style.css -------------------------------------------------------------------------------- /settings-shortcuts-search/theme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BibekBhusal0/zen-custom-js/HEAD/settings-shortcuts-search/theme.json -------------------------------------------------------------------------------- /userChrome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BibekBhusal0/zen-custom-js/HEAD/userChrome.css -------------------------------------------------------------------------------- /userContent.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BibekBhusal0/zen-custom-js/HEAD/userContent.css -------------------------------------------------------------------------------- /utils/getPref.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BibekBhusal0/zen-custom-js/HEAD/utils/getPref.mjs -------------------------------------------------------------------------------- /utils/icon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BibekBhusal0/zen-custom-js/HEAD/utils/icon.js -------------------------------------------------------------------------------- /utils/keyboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BibekBhusal0/zen-custom-js/HEAD/utils/keyboard.js -------------------------------------------------------------------------------- /utils/parse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BibekBhusal0/zen-custom-js/HEAD/utils/parse.js -------------------------------------------------------------------------------- /utils/timesAgo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BibekBhusal0/zen-custom-js/HEAD/utils/timesAgo.js -------------------------------------------------------------------------------- /utils/toast.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BibekBhusal0/zen-custom-js/HEAD/utils/toast.mjs -------------------------------------------------------------------------------- /widgets.uc.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BibekBhusal0/zen-custom-js/HEAD/widgets.uc.mjs --------------------------------------------------------------------------------