├── .github └── workflows │ └── submit.yaml ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── assets ├── icon.png └── props.css ├── biome.jsonc ├── components ├── IframeDialog │ ├── index.module.css │ └── index.tsx ├── SelectField │ ├── index.module.css │ └── index.ts └── UserCombobox │ ├── index.module.css │ └── index.tsx ├── entrypoints ├── popup │ ├── components │ │ ├── App │ │ │ ├── index.module.css │ │ │ └── index.tsx │ │ ├── Disclosure │ │ │ ├── index.module.css │ │ │ └── index.tsx │ │ └── Form │ │ │ ├── index.module.css │ │ │ └── index.tsx │ ├── hooks │ │ └── usePlugins.ts │ ├── index.html │ ├── index.tsx │ └── style.css └── register-plugins.content │ └── index.ts ├── helpers ├── dom │ ├── async-query-selector.ts │ ├── node-matcher.ts │ ├── observe-query-selector.ts │ └── types.ts ├── plugin-manager │ ├── index.ts │ └── storage.ts └── plugin │ ├── context.ts │ ├── define.ts │ ├── list.ts │ └── types.ts ├── lefthook.yml ├── locales ├── en.yaml └── ja.yaml ├── package.json ├── plugins ├── absoluteDate.ts ├── autoResolution.ts ├── boardOneline │ ├── index.module.css │ └── index.ts ├── childPage.ts ├── copyIssueKeysAndSubjects.ts ├── copyPullSummary │ ├── index.module.css │ └── index.ts ├── copyRawFile.ts ├── copyWiki.ts ├── expandDiffFileLink │ ├── index.module.css │ └── index.ts ├── extendDesc.ts ├── favicon.ts ├── filePermalink.ts ├── ganttFilterParentAndChild │ ├── index.module.css │ └── index.ts ├── hideDocumentToolbar │ ├── index.module.css │ └── index.ts ├── hideEmptyColumn │ └── index.ts ├── hr │ ├── index.module.css │ └── index.ts ├── index.ts ├── jumpIssue.ts ├── oldPost │ ├── index.module.css │ └── index.ts ├── openInDialog │ ├── index.module.css │ └── index.tsx ├── plantuml.ts ├── projectIssueFilter │ ├── index.module.css │ └── index.tsx ├── quickSearch.ts ├── searchKeyboard.ts ├── sidebarAutoClose.ts ├── totalTime │ ├── index.module.css │ └── index.ts ├── userSwitcher │ ├── index.module.css │ └── index.tsx └── zenMode │ ├── index.module.css │ └── index.ts ├── store └── screenshot.png ├── tsconfig.json ├── utils ├── backlog.ts ├── browser-tab.ts ├── dom.ts ├── helpers.ts ├── logger.ts └── renderReactComponent.ts └── wxt.config.ts /.github/workflows/submit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nulab/backlog-power-ups/HEAD/.github/workflows/submit.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nulab/backlog-power-ups/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nulab/backlog-power-ups/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nulab/backlog-power-ups/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nulab/backlog-power-ups/HEAD/README.md -------------------------------------------------------------------------------- /assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nulab/backlog-power-ups/HEAD/assets/icon.png -------------------------------------------------------------------------------- /assets/props.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nulab/backlog-power-ups/HEAD/assets/props.css -------------------------------------------------------------------------------- /biome.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nulab/backlog-power-ups/HEAD/biome.jsonc -------------------------------------------------------------------------------- /components/IframeDialog/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nulab/backlog-power-ups/HEAD/components/IframeDialog/index.module.css -------------------------------------------------------------------------------- /components/IframeDialog/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nulab/backlog-power-ups/HEAD/components/IframeDialog/index.tsx -------------------------------------------------------------------------------- /components/SelectField/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nulab/backlog-power-ups/HEAD/components/SelectField/index.module.css -------------------------------------------------------------------------------- /components/SelectField/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nulab/backlog-power-ups/HEAD/components/SelectField/index.ts -------------------------------------------------------------------------------- /components/UserCombobox/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nulab/backlog-power-ups/HEAD/components/UserCombobox/index.module.css -------------------------------------------------------------------------------- /components/UserCombobox/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nulab/backlog-power-ups/HEAD/components/UserCombobox/index.tsx -------------------------------------------------------------------------------- /entrypoints/popup/components/App/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nulab/backlog-power-ups/HEAD/entrypoints/popup/components/App/index.module.css -------------------------------------------------------------------------------- /entrypoints/popup/components/App/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nulab/backlog-power-ups/HEAD/entrypoints/popup/components/App/index.tsx -------------------------------------------------------------------------------- /entrypoints/popup/components/Disclosure/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nulab/backlog-power-ups/HEAD/entrypoints/popup/components/Disclosure/index.module.css -------------------------------------------------------------------------------- /entrypoints/popup/components/Disclosure/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nulab/backlog-power-ups/HEAD/entrypoints/popup/components/Disclosure/index.tsx -------------------------------------------------------------------------------- /entrypoints/popup/components/Form/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nulab/backlog-power-ups/HEAD/entrypoints/popup/components/Form/index.module.css -------------------------------------------------------------------------------- /entrypoints/popup/components/Form/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nulab/backlog-power-ups/HEAD/entrypoints/popup/components/Form/index.tsx -------------------------------------------------------------------------------- /entrypoints/popup/hooks/usePlugins.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nulab/backlog-power-ups/HEAD/entrypoints/popup/hooks/usePlugins.ts -------------------------------------------------------------------------------- /entrypoints/popup/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nulab/backlog-power-ups/HEAD/entrypoints/popup/index.html -------------------------------------------------------------------------------- /entrypoints/popup/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nulab/backlog-power-ups/HEAD/entrypoints/popup/index.tsx -------------------------------------------------------------------------------- /entrypoints/popup/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nulab/backlog-power-ups/HEAD/entrypoints/popup/style.css -------------------------------------------------------------------------------- /entrypoints/register-plugins.content/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nulab/backlog-power-ups/HEAD/entrypoints/register-plugins.content/index.ts -------------------------------------------------------------------------------- /helpers/dom/async-query-selector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nulab/backlog-power-ups/HEAD/helpers/dom/async-query-selector.ts -------------------------------------------------------------------------------- /helpers/dom/node-matcher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nulab/backlog-power-ups/HEAD/helpers/dom/node-matcher.ts -------------------------------------------------------------------------------- /helpers/dom/observe-query-selector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nulab/backlog-power-ups/HEAD/helpers/dom/observe-query-selector.ts -------------------------------------------------------------------------------- /helpers/dom/types.ts: -------------------------------------------------------------------------------- 1 | export type InvalidateFunction = () => void; 2 | -------------------------------------------------------------------------------- /helpers/plugin-manager/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nulab/backlog-power-ups/HEAD/helpers/plugin-manager/index.ts -------------------------------------------------------------------------------- /helpers/plugin-manager/storage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nulab/backlog-power-ups/HEAD/helpers/plugin-manager/storage.ts -------------------------------------------------------------------------------- /helpers/plugin/context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nulab/backlog-power-ups/HEAD/helpers/plugin/context.ts -------------------------------------------------------------------------------- /helpers/plugin/define.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nulab/backlog-power-ups/HEAD/helpers/plugin/define.ts -------------------------------------------------------------------------------- /helpers/plugin/list.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nulab/backlog-power-ups/HEAD/helpers/plugin/list.ts -------------------------------------------------------------------------------- /helpers/plugin/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nulab/backlog-power-ups/HEAD/helpers/plugin/types.ts -------------------------------------------------------------------------------- /lefthook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nulab/backlog-power-ups/HEAD/lefthook.yml -------------------------------------------------------------------------------- /locales/en.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nulab/backlog-power-ups/HEAD/locales/en.yaml -------------------------------------------------------------------------------- /locales/ja.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nulab/backlog-power-ups/HEAD/locales/ja.yaml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nulab/backlog-power-ups/HEAD/package.json -------------------------------------------------------------------------------- /plugins/absoluteDate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nulab/backlog-power-ups/HEAD/plugins/absoluteDate.ts -------------------------------------------------------------------------------- /plugins/autoResolution.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nulab/backlog-power-ups/HEAD/plugins/autoResolution.ts -------------------------------------------------------------------------------- /plugins/boardOneline/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nulab/backlog-power-ups/HEAD/plugins/boardOneline/index.module.css -------------------------------------------------------------------------------- /plugins/boardOneline/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nulab/backlog-power-ups/HEAD/plugins/boardOneline/index.ts -------------------------------------------------------------------------------- /plugins/childPage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nulab/backlog-power-ups/HEAD/plugins/childPage.ts -------------------------------------------------------------------------------- /plugins/copyIssueKeysAndSubjects.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nulab/backlog-power-ups/HEAD/plugins/copyIssueKeysAndSubjects.ts -------------------------------------------------------------------------------- /plugins/copyPullSummary/index.module.css: -------------------------------------------------------------------------------- 1 | .button { 2 | margin-left: 4px; 3 | } -------------------------------------------------------------------------------- /plugins/copyPullSummary/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nulab/backlog-power-ups/HEAD/plugins/copyPullSummary/index.ts -------------------------------------------------------------------------------- /plugins/copyRawFile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nulab/backlog-power-ups/HEAD/plugins/copyRawFile.ts -------------------------------------------------------------------------------- /plugins/copyWiki.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nulab/backlog-power-ups/HEAD/plugins/copyWiki.ts -------------------------------------------------------------------------------- /plugins/expandDiffFileLink/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nulab/backlog-power-ups/HEAD/plugins/expandDiffFileLink/index.module.css -------------------------------------------------------------------------------- /plugins/expandDiffFileLink/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nulab/backlog-power-ups/HEAD/plugins/expandDiffFileLink/index.ts -------------------------------------------------------------------------------- /plugins/extendDesc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nulab/backlog-power-ups/HEAD/plugins/extendDesc.ts -------------------------------------------------------------------------------- /plugins/favicon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nulab/backlog-power-ups/HEAD/plugins/favicon.ts -------------------------------------------------------------------------------- /plugins/filePermalink.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nulab/backlog-power-ups/HEAD/plugins/filePermalink.ts -------------------------------------------------------------------------------- /plugins/ganttFilterParentAndChild/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nulab/backlog-power-ups/HEAD/plugins/ganttFilterParentAndChild/index.module.css -------------------------------------------------------------------------------- /plugins/ganttFilterParentAndChild/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nulab/backlog-power-ups/HEAD/plugins/ganttFilterParentAndChild/index.ts -------------------------------------------------------------------------------- /plugins/hideDocumentToolbar/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nulab/backlog-power-ups/HEAD/plugins/hideDocumentToolbar/index.module.css -------------------------------------------------------------------------------- /plugins/hideDocumentToolbar/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nulab/backlog-power-ups/HEAD/plugins/hideDocumentToolbar/index.ts -------------------------------------------------------------------------------- /plugins/hideEmptyColumn/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nulab/backlog-power-ups/HEAD/plugins/hideEmptyColumn/index.ts -------------------------------------------------------------------------------- /plugins/hr/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nulab/backlog-power-ups/HEAD/plugins/hr/index.module.css -------------------------------------------------------------------------------- /plugins/hr/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nulab/backlog-power-ups/HEAD/plugins/hr/index.ts -------------------------------------------------------------------------------- /plugins/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nulab/backlog-power-ups/HEAD/plugins/index.ts -------------------------------------------------------------------------------- /plugins/jumpIssue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nulab/backlog-power-ups/HEAD/plugins/jumpIssue.ts -------------------------------------------------------------------------------- /plugins/oldPost/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nulab/backlog-power-ups/HEAD/plugins/oldPost/index.module.css -------------------------------------------------------------------------------- /plugins/oldPost/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nulab/backlog-power-ups/HEAD/plugins/oldPost/index.ts -------------------------------------------------------------------------------- /plugins/openInDialog/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nulab/backlog-power-ups/HEAD/plugins/openInDialog/index.module.css -------------------------------------------------------------------------------- /plugins/openInDialog/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nulab/backlog-power-ups/HEAD/plugins/openInDialog/index.tsx -------------------------------------------------------------------------------- /plugins/plantuml.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nulab/backlog-power-ups/HEAD/plugins/plantuml.ts -------------------------------------------------------------------------------- /plugins/projectIssueFilter/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nulab/backlog-power-ups/HEAD/plugins/projectIssueFilter/index.module.css -------------------------------------------------------------------------------- /plugins/projectIssueFilter/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nulab/backlog-power-ups/HEAD/plugins/projectIssueFilter/index.tsx -------------------------------------------------------------------------------- /plugins/quickSearch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nulab/backlog-power-ups/HEAD/plugins/quickSearch.ts -------------------------------------------------------------------------------- /plugins/searchKeyboard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nulab/backlog-power-ups/HEAD/plugins/searchKeyboard.ts -------------------------------------------------------------------------------- /plugins/sidebarAutoClose.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nulab/backlog-power-ups/HEAD/plugins/sidebarAutoClose.ts -------------------------------------------------------------------------------- /plugins/totalTime/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nulab/backlog-power-ups/HEAD/plugins/totalTime/index.module.css -------------------------------------------------------------------------------- /plugins/totalTime/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nulab/backlog-power-ups/HEAD/plugins/totalTime/index.ts -------------------------------------------------------------------------------- /plugins/userSwitcher/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nulab/backlog-power-ups/HEAD/plugins/userSwitcher/index.module.css -------------------------------------------------------------------------------- /plugins/userSwitcher/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nulab/backlog-power-ups/HEAD/plugins/userSwitcher/index.tsx -------------------------------------------------------------------------------- /plugins/zenMode/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nulab/backlog-power-ups/HEAD/plugins/zenMode/index.module.css -------------------------------------------------------------------------------- /plugins/zenMode/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nulab/backlog-power-ups/HEAD/plugins/zenMode/index.ts -------------------------------------------------------------------------------- /store/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nulab/backlog-power-ups/HEAD/store/screenshot.png -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nulab/backlog-power-ups/HEAD/tsconfig.json -------------------------------------------------------------------------------- /utils/backlog.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nulab/backlog-power-ups/HEAD/utils/backlog.ts -------------------------------------------------------------------------------- /utils/browser-tab.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nulab/backlog-power-ups/HEAD/utils/browser-tab.ts -------------------------------------------------------------------------------- /utils/dom.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nulab/backlog-power-ups/HEAD/utils/dom.ts -------------------------------------------------------------------------------- /utils/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nulab/backlog-power-ups/HEAD/utils/helpers.ts -------------------------------------------------------------------------------- /utils/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nulab/backlog-power-ups/HEAD/utils/logger.ts -------------------------------------------------------------------------------- /utils/renderReactComponent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nulab/backlog-power-ups/HEAD/utils/renderReactComponent.ts -------------------------------------------------------------------------------- /wxt.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nulab/backlog-power-ups/HEAD/wxt.config.ts --------------------------------------------------------------------------------