├── .eslintignore ├── .fixpackrc ├── .gitignore ├── .npmrc ├── .vscode ├── extensions.json └── settings.json ├── README.md ├── package.json ├── src ├── background │ ├── clar-watcher.ts │ ├── dispatcher.ts │ ├── notification.ts │ ├── oninstall.ts │ ├── submission-watcher.ts │ └── watching-list-manager.ts ├── content │ ├── add-tweet-button.ts │ ├── all.ts │ ├── betalib.ts │ ├── clar-notify.ts │ ├── dropdown-modify.ts │ ├── link-to-beta.ts │ ├── result-notify.ts │ └── submission-warning.ts ├── css │ ├── add-twitter-button.css │ ├── add-twitter-button.less │ ├── all.css │ ├── all.less │ ├── dropdown-modify.css │ └── dropdown-modify.less ├── image │ ├── beta.png │ ├── icon.png │ └── question.png ├── lib │ ├── jquery.cookie.js │ ├── jquery.min.js │ └── lock.ts ├── manifest.json └── options-page │ ├── options.css │ ├── options.html │ ├── options.less │ └── options.ts ├── tsconfig.json └── wercker.yml /.eslintignore: -------------------------------------------------------------------------------- 1 | dist 2 | src/lib 3 | -------------------------------------------------------------------------------- /.fixpackrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drafear/comfortable-atcoder/HEAD/.fixpackrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | 3 | .cache/ 4 | dist/ 5 | node_modules/ 6 | 7 | src/*.css 8 | 9 | Release.zip 10 | -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | save-exact=true 2 | -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drafear/comfortable-atcoder/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drafear/comfortable-atcoder/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drafear/comfortable-atcoder/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drafear/comfortable-atcoder/HEAD/package.json -------------------------------------------------------------------------------- /src/background/clar-watcher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drafear/comfortable-atcoder/HEAD/src/background/clar-watcher.ts -------------------------------------------------------------------------------- /src/background/dispatcher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drafear/comfortable-atcoder/HEAD/src/background/dispatcher.ts -------------------------------------------------------------------------------- /src/background/notification.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drafear/comfortable-atcoder/HEAD/src/background/notification.ts -------------------------------------------------------------------------------- /src/background/oninstall.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drafear/comfortable-atcoder/HEAD/src/background/oninstall.ts -------------------------------------------------------------------------------- /src/background/submission-watcher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drafear/comfortable-atcoder/HEAD/src/background/submission-watcher.ts -------------------------------------------------------------------------------- /src/background/watching-list-manager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drafear/comfortable-atcoder/HEAD/src/background/watching-list-manager.ts -------------------------------------------------------------------------------- /src/content/add-tweet-button.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drafear/comfortable-atcoder/HEAD/src/content/add-tweet-button.ts -------------------------------------------------------------------------------- /src/content/all.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drafear/comfortable-atcoder/HEAD/src/content/all.ts -------------------------------------------------------------------------------- /src/content/betalib.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drafear/comfortable-atcoder/HEAD/src/content/betalib.ts -------------------------------------------------------------------------------- /src/content/clar-notify.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drafear/comfortable-atcoder/HEAD/src/content/clar-notify.ts -------------------------------------------------------------------------------- /src/content/dropdown-modify.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drafear/comfortable-atcoder/HEAD/src/content/dropdown-modify.ts -------------------------------------------------------------------------------- /src/content/link-to-beta.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drafear/comfortable-atcoder/HEAD/src/content/link-to-beta.ts -------------------------------------------------------------------------------- /src/content/result-notify.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drafear/comfortable-atcoder/HEAD/src/content/result-notify.ts -------------------------------------------------------------------------------- /src/content/submission-warning.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drafear/comfortable-atcoder/HEAD/src/content/submission-warning.ts -------------------------------------------------------------------------------- /src/css/add-twitter-button.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drafear/comfortable-atcoder/HEAD/src/css/add-twitter-button.css -------------------------------------------------------------------------------- /src/css/add-twitter-button.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drafear/comfortable-atcoder/HEAD/src/css/add-twitter-button.less -------------------------------------------------------------------------------- /src/css/all.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/css/all.less: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/css/dropdown-modify.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drafear/comfortable-atcoder/HEAD/src/css/dropdown-modify.css -------------------------------------------------------------------------------- /src/css/dropdown-modify.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drafear/comfortable-atcoder/HEAD/src/css/dropdown-modify.less -------------------------------------------------------------------------------- /src/image/beta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drafear/comfortable-atcoder/HEAD/src/image/beta.png -------------------------------------------------------------------------------- /src/image/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drafear/comfortable-atcoder/HEAD/src/image/icon.png -------------------------------------------------------------------------------- /src/image/question.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drafear/comfortable-atcoder/HEAD/src/image/question.png -------------------------------------------------------------------------------- /src/lib/jquery.cookie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drafear/comfortable-atcoder/HEAD/src/lib/jquery.cookie.js -------------------------------------------------------------------------------- /src/lib/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drafear/comfortable-atcoder/HEAD/src/lib/jquery.min.js -------------------------------------------------------------------------------- /src/lib/lock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drafear/comfortable-atcoder/HEAD/src/lib/lock.ts -------------------------------------------------------------------------------- /src/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drafear/comfortable-atcoder/HEAD/src/manifest.json -------------------------------------------------------------------------------- /src/options-page/options.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drafear/comfortable-atcoder/HEAD/src/options-page/options.css -------------------------------------------------------------------------------- /src/options-page/options.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drafear/comfortable-atcoder/HEAD/src/options-page/options.html -------------------------------------------------------------------------------- /src/options-page/options.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drafear/comfortable-atcoder/HEAD/src/options-page/options.less -------------------------------------------------------------------------------- /src/options-page/options.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drafear/comfortable-atcoder/HEAD/src/options-page/options.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drafear/comfortable-atcoder/HEAD/tsconfig.json -------------------------------------------------------------------------------- /wercker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drafear/comfortable-atcoder/HEAD/wercker.yml --------------------------------------------------------------------------------