├── .eslintrc.js ├── .gitignore ├── AUTHORS.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── addon ├── .eslintrc.js ├── background.js ├── constants.js ├── content │ ├── debug │ │ ├── debug.html │ │ └── debug.js │ ├── options │ │ ├── options.css │ │ ├── options.html │ │ └── options.js │ ├── popup │ │ ├── popup.css │ │ ├── popup.html │ │ └── popup.js │ └── release-notes │ │ ├── 0.5 │ │ ├── panel.png │ │ └── working-hours.png │ │ ├── 0.6 │ │ ├── needinfos-in-options.png │ │ ├── needinfos-in-panel.png │ │ └── no-phabricator-session.png │ │ ├── release-notes.css │ │ └── release-notes.html ├── icons │ ├── CREDITS.md │ ├── gear.svg │ ├── myqonly-dark.svg │ ├── myqonly-light.svg │ └── refresh.svg └── manifest.json ├── karma.conf.js ├── package.json ├── tests ├── .eslintrc.js ├── background.test.js ├── content │ └── options.test.js ├── services │ └── phabricator │ │ ├── empty.html │ │ ├── one-ready.html │ │ └── phabricator.test.js └── test-utils.js └── yarn.lock /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeconley/myqonly/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeconley/myqonly/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeconley/myqonly/HEAD/AUTHORS.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeconley/myqonly/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeconley/myqonly/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeconley/myqonly/HEAD/README.md -------------------------------------------------------------------------------- /addon/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeconley/myqonly/HEAD/addon/.eslintrc.js -------------------------------------------------------------------------------- /addon/background.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeconley/myqonly/HEAD/addon/background.js -------------------------------------------------------------------------------- /addon/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeconley/myqonly/HEAD/addon/constants.js -------------------------------------------------------------------------------- /addon/content/debug/debug.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeconley/myqonly/HEAD/addon/content/debug/debug.html -------------------------------------------------------------------------------- /addon/content/debug/debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeconley/myqonly/HEAD/addon/content/debug/debug.js -------------------------------------------------------------------------------- /addon/content/options/options.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeconley/myqonly/HEAD/addon/content/options/options.css -------------------------------------------------------------------------------- /addon/content/options/options.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeconley/myqonly/HEAD/addon/content/options/options.html -------------------------------------------------------------------------------- /addon/content/options/options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeconley/myqonly/HEAD/addon/content/options/options.js -------------------------------------------------------------------------------- /addon/content/popup/popup.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeconley/myqonly/HEAD/addon/content/popup/popup.css -------------------------------------------------------------------------------- /addon/content/popup/popup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeconley/myqonly/HEAD/addon/content/popup/popup.html -------------------------------------------------------------------------------- /addon/content/popup/popup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeconley/myqonly/HEAD/addon/content/popup/popup.js -------------------------------------------------------------------------------- /addon/content/release-notes/0.5/panel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeconley/myqonly/HEAD/addon/content/release-notes/0.5/panel.png -------------------------------------------------------------------------------- /addon/content/release-notes/0.5/working-hours.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeconley/myqonly/HEAD/addon/content/release-notes/0.5/working-hours.png -------------------------------------------------------------------------------- /addon/content/release-notes/0.6/needinfos-in-options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeconley/myqonly/HEAD/addon/content/release-notes/0.6/needinfos-in-options.png -------------------------------------------------------------------------------- /addon/content/release-notes/0.6/needinfos-in-panel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeconley/myqonly/HEAD/addon/content/release-notes/0.6/needinfos-in-panel.png -------------------------------------------------------------------------------- /addon/content/release-notes/0.6/no-phabricator-session.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeconley/myqonly/HEAD/addon/content/release-notes/0.6/no-phabricator-session.png -------------------------------------------------------------------------------- /addon/content/release-notes/release-notes.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeconley/myqonly/HEAD/addon/content/release-notes/release-notes.css -------------------------------------------------------------------------------- /addon/content/release-notes/release-notes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeconley/myqonly/HEAD/addon/content/release-notes/release-notes.html -------------------------------------------------------------------------------- /addon/icons/CREDITS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeconley/myqonly/HEAD/addon/icons/CREDITS.md -------------------------------------------------------------------------------- /addon/icons/gear.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeconley/myqonly/HEAD/addon/icons/gear.svg -------------------------------------------------------------------------------- /addon/icons/myqonly-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeconley/myqonly/HEAD/addon/icons/myqonly-dark.svg -------------------------------------------------------------------------------- /addon/icons/myqonly-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeconley/myqonly/HEAD/addon/icons/myqonly-light.svg -------------------------------------------------------------------------------- /addon/icons/refresh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeconley/myqonly/HEAD/addon/icons/refresh.svg -------------------------------------------------------------------------------- /addon/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeconley/myqonly/HEAD/addon/manifest.json -------------------------------------------------------------------------------- /karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeconley/myqonly/HEAD/karma.conf.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeconley/myqonly/HEAD/package.json -------------------------------------------------------------------------------- /tests/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeconley/myqonly/HEAD/tests/.eslintrc.js -------------------------------------------------------------------------------- /tests/background.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeconley/myqonly/HEAD/tests/background.test.js -------------------------------------------------------------------------------- /tests/content/options.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeconley/myqonly/HEAD/tests/content/options.test.js -------------------------------------------------------------------------------- /tests/services/phabricator/empty.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeconley/myqonly/HEAD/tests/services/phabricator/empty.html -------------------------------------------------------------------------------- /tests/services/phabricator/one-ready.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeconley/myqonly/HEAD/tests/services/phabricator/one-ready.html -------------------------------------------------------------------------------- /tests/services/phabricator/phabricator.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeconley/myqonly/HEAD/tests/services/phabricator/phabricator.test.js -------------------------------------------------------------------------------- /tests/test-utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeconley/myqonly/HEAD/tests/test-utils.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeconley/myqonly/HEAD/yarn.lock --------------------------------------------------------------------------------