├── .babelrc ├── .eslintrc ├── .github └── workflows │ ├── main.yml │ └── release.yml ├── .gitignore ├── .gitmodules ├── .jpmignore ├── .nycrc ├── .stylelintrc ├── .travis.yml ├── Dockerfile ├── README.md ├── _locales ├── en │ └── messages.json └── ja │ └── messages.json ├── content_scripts ├── Logger.js ├── back.png ├── close.png ├── color.png ├── delete-hover.png ├── delete.png ├── edit-tag-hover.png ├── edit-tag.png ├── menu-hover.png ├── menu.css ├── menu.png ├── minimize-hover.png ├── minimize.png ├── new.png ├── page-option.png └── sticky-view.css ├── doc └── main.md ├── docker-compose.yml ├── icon.png ├── icons ├── create-icon-19.png ├── create-icon-38.png ├── icon-16.png ├── icon-32.png └── icon-64.png ├── index.js ├── manifest.json ├── options_ui ├── index.html └── style.css ├── package.json ├── popup ├── index.html └── style.css ├── sidebar ├── index.html ├── react-treeview.css └── style.css ├── src ├── background.js ├── components │ └── Confirm.jsx ├── containers │ ├── Home.jsx │ ├── Login.jsx │ ├── OptionsUI.jsx │ ├── SignUp.jsx │ └── StickyList.jsx ├── content_script.js ├── content_scripts │ ├── ColorPicker.js │ ├── Dialog.js │ ├── FontPicker.js │ ├── StickyMenu.js │ ├── StickyView.js │ └── TagEditor.js ├── models │ ├── Model.js │ ├── Page.js │ ├── Sticky.js │ └── Tag.js ├── options_ui.jsx ├── popup.jsx ├── reducers │ ├── options_ui.js │ ├── popup.js │ └── sidebar.js ├── sagas │ ├── options_ui.js │ ├── popup.js │ ├── router.js │ └── sidebar.js ├── sidebar.jsx └── utils │ ├── api.js │ ├── app.js │ ├── file.js │ ├── i18n.js │ ├── indexedDB.js │ ├── logger.js │ └── port.js ├── test ├── .eslintrc ├── background.test.js ├── browser_mock.js ├── content_script.test.js ├── popup.test.js ├── setup.js └── sidebar.test.js ├── webpack.config.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kumabook/stickynotes/HEAD/.babelrc -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kumabook/stickynotes/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kumabook/stickynotes/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kumabook/stickynotes/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kumabook/stickynotes/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.jpmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kumabook/stickynotes/HEAD/.jpmignore -------------------------------------------------------------------------------- /.nycrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kumabook/stickynotes/HEAD/.nycrc -------------------------------------------------------------------------------- /.stylelintrc: -------------------------------------------------------------------------------- 1 | { 2 | "extends": ["stylelint-config-standard"] 3 | } -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kumabook/stickynotes/HEAD/.travis.yml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kumabook/stickynotes/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kumabook/stickynotes/HEAD/README.md -------------------------------------------------------------------------------- /_locales/en/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kumabook/stickynotes/HEAD/_locales/en/messages.json -------------------------------------------------------------------------------- /_locales/ja/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kumabook/stickynotes/HEAD/_locales/ja/messages.json -------------------------------------------------------------------------------- /content_scripts/Logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kumabook/stickynotes/HEAD/content_scripts/Logger.js -------------------------------------------------------------------------------- /content_scripts/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kumabook/stickynotes/HEAD/content_scripts/back.png -------------------------------------------------------------------------------- /content_scripts/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kumabook/stickynotes/HEAD/content_scripts/close.png -------------------------------------------------------------------------------- /content_scripts/color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kumabook/stickynotes/HEAD/content_scripts/color.png -------------------------------------------------------------------------------- /content_scripts/delete-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kumabook/stickynotes/HEAD/content_scripts/delete-hover.png -------------------------------------------------------------------------------- /content_scripts/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kumabook/stickynotes/HEAD/content_scripts/delete.png -------------------------------------------------------------------------------- /content_scripts/edit-tag-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kumabook/stickynotes/HEAD/content_scripts/edit-tag-hover.png -------------------------------------------------------------------------------- /content_scripts/edit-tag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kumabook/stickynotes/HEAD/content_scripts/edit-tag.png -------------------------------------------------------------------------------- /content_scripts/menu-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kumabook/stickynotes/HEAD/content_scripts/menu-hover.png -------------------------------------------------------------------------------- /content_scripts/menu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kumabook/stickynotes/HEAD/content_scripts/menu.css -------------------------------------------------------------------------------- /content_scripts/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kumabook/stickynotes/HEAD/content_scripts/menu.png -------------------------------------------------------------------------------- /content_scripts/minimize-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kumabook/stickynotes/HEAD/content_scripts/minimize-hover.png -------------------------------------------------------------------------------- /content_scripts/minimize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kumabook/stickynotes/HEAD/content_scripts/minimize.png -------------------------------------------------------------------------------- /content_scripts/new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kumabook/stickynotes/HEAD/content_scripts/new.png -------------------------------------------------------------------------------- /content_scripts/page-option.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kumabook/stickynotes/HEAD/content_scripts/page-option.png -------------------------------------------------------------------------------- /content_scripts/sticky-view.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kumabook/stickynotes/HEAD/content_scripts/sticky-view.css -------------------------------------------------------------------------------- /doc/main.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kumabook/stickynotes/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kumabook/stickynotes/HEAD/icon.png -------------------------------------------------------------------------------- /icons/create-icon-19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kumabook/stickynotes/HEAD/icons/create-icon-19.png -------------------------------------------------------------------------------- /icons/create-icon-38.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kumabook/stickynotes/HEAD/icons/create-icon-38.png -------------------------------------------------------------------------------- /icons/icon-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kumabook/stickynotes/HEAD/icons/icon-16.png -------------------------------------------------------------------------------- /icons/icon-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kumabook/stickynotes/HEAD/icons/icon-32.png -------------------------------------------------------------------------------- /icons/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kumabook/stickynotes/HEAD/icons/icon-64.png -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kumabook/stickynotes/HEAD/index.js -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kumabook/stickynotes/HEAD/manifest.json -------------------------------------------------------------------------------- /options_ui/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kumabook/stickynotes/HEAD/options_ui/index.html -------------------------------------------------------------------------------- /options_ui/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kumabook/stickynotes/HEAD/options_ui/style.css -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kumabook/stickynotes/HEAD/package.json -------------------------------------------------------------------------------- /popup/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kumabook/stickynotes/HEAD/popup/index.html -------------------------------------------------------------------------------- /popup/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kumabook/stickynotes/HEAD/popup/style.css -------------------------------------------------------------------------------- /sidebar/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kumabook/stickynotes/HEAD/sidebar/index.html -------------------------------------------------------------------------------- /sidebar/react-treeview.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kumabook/stickynotes/HEAD/sidebar/react-treeview.css -------------------------------------------------------------------------------- /sidebar/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kumabook/stickynotes/HEAD/sidebar/style.css -------------------------------------------------------------------------------- /src/background.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kumabook/stickynotes/HEAD/src/background.js -------------------------------------------------------------------------------- /src/components/Confirm.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kumabook/stickynotes/HEAD/src/components/Confirm.jsx -------------------------------------------------------------------------------- /src/containers/Home.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kumabook/stickynotes/HEAD/src/containers/Home.jsx -------------------------------------------------------------------------------- /src/containers/Login.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kumabook/stickynotes/HEAD/src/containers/Login.jsx -------------------------------------------------------------------------------- /src/containers/OptionsUI.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kumabook/stickynotes/HEAD/src/containers/OptionsUI.jsx -------------------------------------------------------------------------------- /src/containers/SignUp.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kumabook/stickynotes/HEAD/src/containers/SignUp.jsx -------------------------------------------------------------------------------- /src/containers/StickyList.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kumabook/stickynotes/HEAD/src/containers/StickyList.jsx -------------------------------------------------------------------------------- /src/content_script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kumabook/stickynotes/HEAD/src/content_script.js -------------------------------------------------------------------------------- /src/content_scripts/ColorPicker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kumabook/stickynotes/HEAD/src/content_scripts/ColorPicker.js -------------------------------------------------------------------------------- /src/content_scripts/Dialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kumabook/stickynotes/HEAD/src/content_scripts/Dialog.js -------------------------------------------------------------------------------- /src/content_scripts/FontPicker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kumabook/stickynotes/HEAD/src/content_scripts/FontPicker.js -------------------------------------------------------------------------------- /src/content_scripts/StickyMenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kumabook/stickynotes/HEAD/src/content_scripts/StickyMenu.js -------------------------------------------------------------------------------- /src/content_scripts/StickyView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kumabook/stickynotes/HEAD/src/content_scripts/StickyView.js -------------------------------------------------------------------------------- /src/content_scripts/TagEditor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kumabook/stickynotes/HEAD/src/content_scripts/TagEditor.js -------------------------------------------------------------------------------- /src/models/Model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kumabook/stickynotes/HEAD/src/models/Model.js -------------------------------------------------------------------------------- /src/models/Page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kumabook/stickynotes/HEAD/src/models/Page.js -------------------------------------------------------------------------------- /src/models/Sticky.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kumabook/stickynotes/HEAD/src/models/Sticky.js -------------------------------------------------------------------------------- /src/models/Tag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kumabook/stickynotes/HEAD/src/models/Tag.js -------------------------------------------------------------------------------- /src/options_ui.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kumabook/stickynotes/HEAD/src/options_ui.jsx -------------------------------------------------------------------------------- /src/popup.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kumabook/stickynotes/HEAD/src/popup.jsx -------------------------------------------------------------------------------- /src/reducers/options_ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kumabook/stickynotes/HEAD/src/reducers/options_ui.js -------------------------------------------------------------------------------- /src/reducers/popup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kumabook/stickynotes/HEAD/src/reducers/popup.js -------------------------------------------------------------------------------- /src/reducers/sidebar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kumabook/stickynotes/HEAD/src/reducers/sidebar.js -------------------------------------------------------------------------------- /src/sagas/options_ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kumabook/stickynotes/HEAD/src/sagas/options_ui.js -------------------------------------------------------------------------------- /src/sagas/popup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kumabook/stickynotes/HEAD/src/sagas/popup.js -------------------------------------------------------------------------------- /src/sagas/router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kumabook/stickynotes/HEAD/src/sagas/router.js -------------------------------------------------------------------------------- /src/sagas/sidebar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kumabook/stickynotes/HEAD/src/sagas/sidebar.js -------------------------------------------------------------------------------- /src/sidebar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kumabook/stickynotes/HEAD/src/sidebar.jsx -------------------------------------------------------------------------------- /src/utils/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kumabook/stickynotes/HEAD/src/utils/api.js -------------------------------------------------------------------------------- /src/utils/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kumabook/stickynotes/HEAD/src/utils/app.js -------------------------------------------------------------------------------- /src/utils/file.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kumabook/stickynotes/HEAD/src/utils/file.js -------------------------------------------------------------------------------- /src/utils/i18n.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kumabook/stickynotes/HEAD/src/utils/i18n.js -------------------------------------------------------------------------------- /src/utils/indexedDB.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kumabook/stickynotes/HEAD/src/utils/indexedDB.js -------------------------------------------------------------------------------- /src/utils/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kumabook/stickynotes/HEAD/src/utils/logger.js -------------------------------------------------------------------------------- /src/utils/port.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kumabook/stickynotes/HEAD/src/utils/port.js -------------------------------------------------------------------------------- /test/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kumabook/stickynotes/HEAD/test/.eslintrc -------------------------------------------------------------------------------- /test/background.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kumabook/stickynotes/HEAD/test/background.test.js -------------------------------------------------------------------------------- /test/browser_mock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kumabook/stickynotes/HEAD/test/browser_mock.js -------------------------------------------------------------------------------- /test/content_script.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kumabook/stickynotes/HEAD/test/content_script.test.js -------------------------------------------------------------------------------- /test/popup.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kumabook/stickynotes/HEAD/test/popup.test.js -------------------------------------------------------------------------------- /test/setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kumabook/stickynotes/HEAD/test/setup.js -------------------------------------------------------------------------------- /test/sidebar.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kumabook/stickynotes/HEAD/test/sidebar.test.js -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kumabook/stickynotes/HEAD/webpack.config.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kumabook/stickynotes/HEAD/yarn.lock --------------------------------------------------------------------------------