├── .gitignore ├── 2018050916370374839739529.jpg ├── LICENSE ├── README.md ├── gif.aep ├── gif.gif ├── git remarks.crx ├── git remarks ├── images │ └── icon.png ├── javascript │ ├── base │ │ └── vue.js │ ├── gitee │ │ └── index.js │ └── github │ │ └── index.js ├── manifest.json └── styles │ ├── gitee │ └── index.css │ ├── github │ └── index.css │ └── global.css ├── original video.mov ├── screenshots.jpg ├── screenshots1400.jpg ├── screenshots440.jpg └── screenshots920.jpg /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoythan/Git-Remarks/HEAD/.gitignore -------------------------------------------------------------------------------- /2018050916370374839739529.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoythan/Git-Remarks/HEAD/2018050916370374839739529.jpg -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoythan/Git-Remarks/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoythan/Git-Remarks/HEAD/README.md -------------------------------------------------------------------------------- /gif.aep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoythan/Git-Remarks/HEAD/gif.aep -------------------------------------------------------------------------------- /gif.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoythan/Git-Remarks/HEAD/gif.gif -------------------------------------------------------------------------------- /git remarks.crx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoythan/Git-Remarks/HEAD/git remarks.crx -------------------------------------------------------------------------------- /git remarks/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoythan/Git-Remarks/HEAD/git remarks/images/icon.png -------------------------------------------------------------------------------- /git remarks/javascript/base/vue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoythan/Git-Remarks/HEAD/git remarks/javascript/base/vue.js -------------------------------------------------------------------------------- /git remarks/javascript/gitee/index.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /git remarks/javascript/github/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoythan/Git-Remarks/HEAD/git remarks/javascript/github/index.js -------------------------------------------------------------------------------- /git remarks/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoythan/Git-Remarks/HEAD/git remarks/manifest.json -------------------------------------------------------------------------------- /git remarks/styles/gitee/index.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /git remarks/styles/github/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoythan/Git-Remarks/HEAD/git remarks/styles/github/index.css -------------------------------------------------------------------------------- /git remarks/styles/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoythan/Git-Remarks/HEAD/git remarks/styles/global.css -------------------------------------------------------------------------------- /original video.mov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoythan/Git-Remarks/HEAD/original video.mov -------------------------------------------------------------------------------- /screenshots.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoythan/Git-Remarks/HEAD/screenshots.jpg -------------------------------------------------------------------------------- /screenshots1400.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoythan/Git-Remarks/HEAD/screenshots1400.jpg -------------------------------------------------------------------------------- /screenshots440.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoythan/Git-Remarks/HEAD/screenshots440.jpg -------------------------------------------------------------------------------- /screenshots920.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoythan/Git-Remarks/HEAD/screenshots920.jpg --------------------------------------------------------------------------------