├── .editorconfig ├── .eslintrc ├── .gitattributes ├── .gitignore ├── Gruntfile.js ├── LICENSE.md ├── README.md ├── docs ├── README.md ├── collapse-comment.md ├── collapse-markdown.md └── images │ ├── content-collapse.png │ ├── github-collapse-in-comment.gif │ ├── github-collapse-markdown.gif │ ├── markdown-collapse.png │ ├── octopatcher-after.png │ ├── octopatcher-before.png │ ├── octopatcher-options.png │ └── webstore-tile-small.png ├── package.json └── src ├── github-collapse-in-comment.js ├── github-collapse-markdown.js ├── images ├── icon128.png ├── icon16.png ├── icon19.png └── icon48.png ├── manifest.json ├── options.html └── options.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mottie/Octopatcher/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mottie/Octopatcher/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mottie/Octopatcher/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mottie/Octopatcher/HEAD/.gitignore -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mottie/Octopatcher/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mottie/Octopatcher/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mottie/Octopatcher/HEAD/README.md -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mottie/Octopatcher/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/collapse-comment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mottie/Octopatcher/HEAD/docs/collapse-comment.md -------------------------------------------------------------------------------- /docs/collapse-markdown.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mottie/Octopatcher/HEAD/docs/collapse-markdown.md -------------------------------------------------------------------------------- /docs/images/content-collapse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mottie/Octopatcher/HEAD/docs/images/content-collapse.png -------------------------------------------------------------------------------- /docs/images/github-collapse-in-comment.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mottie/Octopatcher/HEAD/docs/images/github-collapse-in-comment.gif -------------------------------------------------------------------------------- /docs/images/github-collapse-markdown.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mottie/Octopatcher/HEAD/docs/images/github-collapse-markdown.gif -------------------------------------------------------------------------------- /docs/images/markdown-collapse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mottie/Octopatcher/HEAD/docs/images/markdown-collapse.png -------------------------------------------------------------------------------- /docs/images/octopatcher-after.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mottie/Octopatcher/HEAD/docs/images/octopatcher-after.png -------------------------------------------------------------------------------- /docs/images/octopatcher-before.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mottie/Octopatcher/HEAD/docs/images/octopatcher-before.png -------------------------------------------------------------------------------- /docs/images/octopatcher-options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mottie/Octopatcher/HEAD/docs/images/octopatcher-options.png -------------------------------------------------------------------------------- /docs/images/webstore-tile-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mottie/Octopatcher/HEAD/docs/images/webstore-tile-small.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mottie/Octopatcher/HEAD/package.json -------------------------------------------------------------------------------- /src/github-collapse-in-comment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mottie/Octopatcher/HEAD/src/github-collapse-in-comment.js -------------------------------------------------------------------------------- /src/github-collapse-markdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mottie/Octopatcher/HEAD/src/github-collapse-markdown.js -------------------------------------------------------------------------------- /src/images/icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mottie/Octopatcher/HEAD/src/images/icon128.png -------------------------------------------------------------------------------- /src/images/icon16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mottie/Octopatcher/HEAD/src/images/icon16.png -------------------------------------------------------------------------------- /src/images/icon19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mottie/Octopatcher/HEAD/src/images/icon19.png -------------------------------------------------------------------------------- /src/images/icon48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mottie/Octopatcher/HEAD/src/images/icon48.png -------------------------------------------------------------------------------- /src/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mottie/Octopatcher/HEAD/src/manifest.json -------------------------------------------------------------------------------- /src/options.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mottie/Octopatcher/HEAD/src/options.html -------------------------------------------------------------------------------- /src/options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mottie/Octopatcher/HEAD/src/options.js --------------------------------------------------------------------------------