├── .babelrc ├── .gitignore ├── History.md ├── Makefile ├── Readme.md ├── circle.yml ├── package.json ├── postcss.config.js ├── src ├── background │ ├── daydream.js │ ├── index.js │ └── recorder.js ├── content-scripts │ └── index.js ├── images │ ├── icon-black.png │ └── icon-green.png ├── manifest.json └── popup │ ├── base.css │ ├── components │ ├── App.css │ ├── App.js │ └── syntaxStyle.js │ ├── containers │ └── App.js │ ├── index.js │ └── template.html ├── webpack.config.babel.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segmentio/daydream/HEAD/.babelrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | build 4 | *.pem 5 | *.crx 6 | -------------------------------------------------------------------------------- /History.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segmentio/daydream/HEAD/History.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segmentio/daydream/HEAD/Makefile -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segmentio/daydream/HEAD/Readme.md -------------------------------------------------------------------------------- /circle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segmentio/daydream/HEAD/circle.yml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segmentio/daydream/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segmentio/daydream/HEAD/postcss.config.js -------------------------------------------------------------------------------- /src/background/daydream.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segmentio/daydream/HEAD/src/background/daydream.js -------------------------------------------------------------------------------- /src/background/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segmentio/daydream/HEAD/src/background/index.js -------------------------------------------------------------------------------- /src/background/recorder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segmentio/daydream/HEAD/src/background/recorder.js -------------------------------------------------------------------------------- /src/content-scripts/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segmentio/daydream/HEAD/src/content-scripts/index.js -------------------------------------------------------------------------------- /src/images/icon-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segmentio/daydream/HEAD/src/images/icon-black.png -------------------------------------------------------------------------------- /src/images/icon-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segmentio/daydream/HEAD/src/images/icon-green.png -------------------------------------------------------------------------------- /src/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segmentio/daydream/HEAD/src/manifest.json -------------------------------------------------------------------------------- /src/popup/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segmentio/daydream/HEAD/src/popup/base.css -------------------------------------------------------------------------------- /src/popup/components/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segmentio/daydream/HEAD/src/popup/components/App.css -------------------------------------------------------------------------------- /src/popup/components/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segmentio/daydream/HEAD/src/popup/components/App.js -------------------------------------------------------------------------------- /src/popup/components/syntaxStyle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segmentio/daydream/HEAD/src/popup/components/syntaxStyle.js -------------------------------------------------------------------------------- /src/popup/containers/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segmentio/daydream/HEAD/src/popup/containers/App.js -------------------------------------------------------------------------------- /src/popup/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segmentio/daydream/HEAD/src/popup/index.js -------------------------------------------------------------------------------- /src/popup/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segmentio/daydream/HEAD/src/popup/template.html -------------------------------------------------------------------------------- /webpack.config.babel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segmentio/daydream/HEAD/webpack.config.babel.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segmentio/daydream/HEAD/yarn.lock --------------------------------------------------------------------------------