gitextract_3yxotjfx/ ├── .eslintrc.json ├── .gitattributes ├── .github/ │ └── FUNDING.yml ├── .gitignore ├── CHANGES.md ├── CLA-entity.md ├── CLA-individual.md ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── PRIVACY.md ├── README.md ├── contributors/ │ ├── adam-p.md │ ├── dugite-code.md │ ├── michaelstepner.md │ ├── mtlynch.md │ └── wm8120.md ├── src/ │ ├── _locales/ │ │ ├── de/ │ │ │ ├── description.txt │ │ │ ├── markdown-here-image2.txt │ │ │ ├── md-for-screenshot.md.txt │ │ │ ├── messages.json │ │ │ └── screenshot-captions.txt │ │ ├── en/ │ │ │ └── messages.json │ │ ├── es/ │ │ │ ├── description.txt │ │ │ ├── markdown-here-image2.txt │ │ │ ├── md-for-screenshot.md.txt │ │ │ ├── messages.json │ │ │ └── screenshot-captions.txt │ │ ├── fr/ │ │ │ ├── description.txt │ │ │ ├── markdown-here-image2.txt │ │ │ ├── md-for-screenshot.md.txt │ │ │ ├── messages.json │ │ │ └── screenshot-captions.txt │ │ ├── it/ │ │ │ ├── description.txt │ │ │ ├── markdown-here-image2.txt │ │ │ ├── md-for-screenshot.md.txt │ │ │ ├── messages.json │ │ │ └── screenshot-captions.txt │ │ ├── ja/ │ │ │ ├── description.txt │ │ │ ├── markdown-here-image2.txt │ │ │ ├── md-for-screenshot.md.txt │ │ │ ├── messages.json │ │ │ └── screenshot-captions.txt │ │ ├── ko/ │ │ │ ├── description.txt │ │ │ ├── markdown-here-image2.txt │ │ │ ├── md-for-screenshot.md.txt │ │ │ ├── messages.json │ │ │ └── screenshot-captions.txt │ │ ├── pl/ │ │ │ ├── description.txt │ │ │ ├── markdown-here-image2.txt │ │ │ ├── md-for-screenshot.md.txt │ │ │ ├── messages.json │ │ │ └── screenshot-captions.txt │ │ ├── pt_BR/ │ │ │ ├── description.txt │ │ │ ├── markdown-here-image2.txt │ │ │ ├── md-for-screenshot.md.txt │ │ │ ├── messages.json │ │ │ └── screenshot-captions.txt │ │ ├── ru/ │ │ │ ├── description.txt │ │ │ ├── markdown-here-image2.txt │ │ │ ├── md-for-screenshot.md.txt │ │ │ ├── messages.json │ │ │ └── screenshot-captions.txt │ │ ├── tr/ │ │ │ ├── description.txt │ │ │ ├── markdown-here-image2.txt │ │ │ ├── md-for-screenshot.md.txt │ │ │ ├── messages.json │ │ │ └── screenshot-captions.txt │ │ ├── zh_CN/ │ │ │ ├── description.txt │ │ │ ├── markdown-here-image2.txt │ │ │ ├── md-for-screenshot.md.txt │ │ │ ├── messages.json │ │ │ └── screenshot-captions.txt │ │ └── zh_TW/ │ │ ├── description.txt │ │ ├── markdown-here-image2.txt │ │ ├── md-for-screenshot.md.txt │ │ ├── messages.json │ │ └── screenshot-captions.txt │ ├── chrome/ │ │ ├── background.html │ │ ├── backgroundscript.js │ │ ├── contentscript.js │ │ ├── upgrade-notification-popup.html │ │ └── upgrade-notification-popup.js │ ├── common/ │ │ ├── CHANGES.md │ │ ├── common-logic.js │ │ ├── content-permissions.js │ │ ├── default.css │ │ ├── forgot-to-render-prompt.html │ │ ├── highlightjs/ │ │ │ ├── highlight.js │ │ │ └── styles/ │ │ │ ├── 1c-light.css │ │ │ ├── a11y-dark.css │ │ │ ├── a11y-light.css │ │ │ ├── agate.css │ │ │ ├── an-old-hope.css │ │ │ ├── androidstudio.css │ │ │ ├── arduino-light.css │ │ │ ├── arta.css │ │ │ ├── ascetic.css │ │ │ ├── atom-one-dark-reasonable.css │ │ │ ├── atom-one-dark.css │ │ │ ├── atom-one-light.css │ │ │ ├── base16/ │ │ │ │ ├── 3024.css │ │ │ │ ├── apathy.css │ │ │ │ ├── apprentice.css │ │ │ │ ├── ashes.css │ │ │ │ ├── atelier-cave-light.css │ │ │ │ ├── atelier-cave.css │ │ │ │ ├── atelier-dune-light.css │ │ │ │ ├── atelier-dune.css │ │ │ │ ├── atelier-estuary-light.css │ │ │ │ ├── atelier-estuary.css │ │ │ │ ├── atelier-forest-light.css │ │ │ │ ├── atelier-forest.css │ │ │ │ ├── atelier-heath-light.css │ │ │ │ ├── atelier-heath.css │ │ │ │ ├── atelier-lakeside-light.css │ │ │ │ ├── atelier-lakeside.css │ │ │ │ ├── atelier-plateau-light.css │ │ │ │ ├── atelier-plateau.css │ │ │ │ ├── atelier-savanna-light.css │ │ │ │ ├── atelier-savanna.css │ │ │ │ ├── atelier-seaside-light.css │ │ │ │ ├── atelier-seaside.css │ │ │ │ ├── atelier-sulphurpool-light.css │ │ │ │ ├── atelier-sulphurpool.css │ │ │ │ ├── atlas.css │ │ │ │ ├── bespin.css │ │ │ │ ├── black-metal-bathory.css │ │ │ │ ├── black-metal-burzum.css │ │ │ │ ├── black-metal-dark-funeral.css │ │ │ │ ├── black-metal-gorgoroth.css │ │ │ │ ├── black-metal-immortal.css │ │ │ │ ├── black-metal-khold.css │ │ │ │ ├── black-metal-marduk.css │ │ │ │ ├── black-metal-mayhem.css │ │ │ │ ├── black-metal-nile.css │ │ │ │ ├── black-metal-venom.css │ │ │ │ ├── black-metal.css │ │ │ │ ├── brewer.css │ │ │ │ ├── bright.css │ │ │ │ ├── brogrammer.css │ │ │ │ ├── brush-trees-dark.css │ │ │ │ ├── brush-trees.css │ │ │ │ ├── chalk.css │ │ │ │ ├── circus.css │ │ │ │ ├── classic-dark.css │ │ │ │ ├── classic-light.css │ │ │ │ ├── codeschool.css │ │ │ │ ├── colors.css │ │ │ │ ├── cupcake.css │ │ │ │ ├── cupertino.css │ │ │ │ ├── danqing.css │ │ │ │ ├── darcula.css │ │ │ │ ├── dark-violet.css │ │ │ │ ├── darkmoss.css │ │ │ │ ├── darktooth.css │ │ │ │ ├── decaf.css │ │ │ │ ├── default-dark.css │ │ │ │ ├── default-light.css │ │ │ │ ├── dirtysea.css │ │ │ │ ├── dracula.css │ │ │ │ ├── edge-dark.css │ │ │ │ ├── edge-light.css │ │ │ │ ├── eighties.css │ │ │ │ ├── embers.css │ │ │ │ ├── equilibrium-dark.css │ │ │ │ ├── equilibrium-gray-dark.css │ │ │ │ ├── equilibrium-gray-light.css │ │ │ │ ├── equilibrium-light.css │ │ │ │ ├── espresso.css │ │ │ │ ├── eva-dim.css │ │ │ │ ├── eva.css │ │ │ │ ├── flat.css │ │ │ │ ├── framer.css │ │ │ │ ├── fruit-soda.css │ │ │ │ ├── gigavolt.css │ │ │ │ ├── github.css │ │ │ │ ├── google-dark.css │ │ │ │ ├── google-light.css │ │ │ │ ├── grayscale-dark.css │ │ │ │ ├── grayscale-light.css │ │ │ │ ├── green-screen.css │ │ │ │ ├── gruvbox-dark-hard.css │ │ │ │ ├── gruvbox-dark-medium.css │ │ │ │ ├── gruvbox-dark-pale.css │ │ │ │ ├── gruvbox-dark-soft.css │ │ │ │ ├── gruvbox-light-hard.css │ │ │ │ ├── gruvbox-light-medium.css │ │ │ │ ├── gruvbox-light-soft.css │ │ │ │ ├── hardcore.css │ │ │ │ ├── harmonic16-dark.css │ │ │ │ ├── harmonic16-light.css │ │ │ │ ├── heetch-dark.css │ │ │ │ ├── heetch-light.css │ │ │ │ ├── helios.css │ │ │ │ ├── hopscotch.css │ │ │ │ ├── horizon-dark.css │ │ │ │ ├── horizon-light.css │ │ │ │ ├── humanoid-dark.css │ │ │ │ ├── humanoid-light.css │ │ │ │ ├── ia-dark.css │ │ │ │ ├── ia-light.css │ │ │ │ ├── icy-dark.css │ │ │ │ ├── ir-black.css │ │ │ │ ├── isotope.css │ │ │ │ ├── kimber.css │ │ │ │ ├── london-tube.css │ │ │ │ ├── macintosh.css │ │ │ │ ├── marrakesh.css │ │ │ │ ├── materia.css │ │ │ │ ├── material-darker.css │ │ │ │ ├── material-lighter.css │ │ │ │ ├── material-palenight.css │ │ │ │ ├── material-vivid.css │ │ │ │ ├── material.css │ │ │ │ ├── mellow-purple.css │ │ │ │ ├── mexico-light.css │ │ │ │ ├── mocha.css │ │ │ │ ├── monokai.css │ │ │ │ ├── nebula.css │ │ │ │ ├── nord.css │ │ │ │ ├── nova.css │ │ │ │ ├── ocean.css │ │ │ │ ├── oceanicnext.css │ │ │ │ ├── one-light.css │ │ │ │ ├── onedark.css │ │ │ │ ├── outrun-dark.css │ │ │ │ ├── papercolor-dark.css │ │ │ │ ├── papercolor-light.css │ │ │ │ ├── paraiso.css │ │ │ │ ├── pasque.css │ │ │ │ ├── phd.css │ │ │ │ ├── pico.css │ │ │ │ ├── pop.css │ │ │ │ ├── porple.css │ │ │ │ ├── qualia.css │ │ │ │ ├── railscasts.css │ │ │ │ ├── rebecca.css │ │ │ │ ├── ros-pine-dawn.css │ │ │ │ ├── ros-pine-moon.css │ │ │ │ ├── ros-pine.css │ │ │ │ ├── sagelight.css │ │ │ │ ├── sandcastle.css │ │ │ │ ├── seti-ui.css │ │ │ │ ├── shapeshifter.css │ │ │ │ ├── silk-dark.css │ │ │ │ ├── silk-light.css │ │ │ │ ├── snazzy.css │ │ │ │ ├── solar-flare-light.css │ │ │ │ ├── solar-flare.css │ │ │ │ ├── solarized-dark.css │ │ │ │ ├── solarized-light.css │ │ │ │ ├── spacemacs.css │ │ │ │ ├── summercamp.css │ │ │ │ ├── summerfruit-dark.css │ │ │ │ ├── summerfruit-light.css │ │ │ │ ├── synth-midnight-terminal-dark.css │ │ │ │ ├── synth-midnight-terminal-light.css │ │ │ │ ├── tango.css │ │ │ │ ├── tender.css │ │ │ │ ├── tomorrow-night.css │ │ │ │ ├── tomorrow.css │ │ │ │ ├── twilight.css │ │ │ │ ├── unikitty-dark.css │ │ │ │ ├── unikitty-light.css │ │ │ │ ├── vulcan.css │ │ │ │ ├── windows-10-light.css │ │ │ │ ├── windows-10.css │ │ │ │ ├── windows-95-light.css │ │ │ │ ├── windows-95.css │ │ │ │ ├── windows-high-contrast-light.css │ │ │ │ ├── windows-high-contrast.css │ │ │ │ ├── windows-nt-light.css │ │ │ │ ├── windows-nt.css │ │ │ │ ├── woodland.css │ │ │ │ ├── xcode-dusk.css │ │ │ │ └── zenburn.css │ │ │ ├── codepen-embed.css │ │ │ ├── color-brewer.css │ │ │ ├── cybertopia-cherry.css │ │ │ ├── cybertopia-dimmer.css │ │ │ ├── cybertopia-icecap.css │ │ │ ├── cybertopia-saturated.css │ │ │ ├── dark.css │ │ │ ├── default.css │ │ │ ├── devibeans.css │ │ │ ├── docco.css │ │ │ ├── far.css │ │ │ ├── felipec.css │ │ │ ├── foundation.css │ │ │ ├── github-dark-dimmed.css │ │ │ ├── github-dark.css │ │ │ ├── github.css │ │ │ ├── gml.css │ │ │ ├── googlecode.css │ │ │ ├── gradient-dark.css │ │ │ ├── gradient-light.css │ │ │ ├── grayscale.css │ │ │ ├── hybrid.css │ │ │ ├── idea.css │ │ │ ├── intellij-light.css │ │ │ ├── ir-black.css │ │ │ ├── isbl-editor-dark.css │ │ │ ├── isbl-editor-light.css │ │ │ ├── kimbie-dark.css │ │ │ ├── kimbie-light.css │ │ │ ├── lightfair.css │ │ │ ├── lioshi.css │ │ │ ├── magula.css │ │ │ ├── mono-blue.css │ │ │ ├── monokai-sublime.css │ │ │ ├── monokai.css │ │ │ ├── night-owl.css │ │ │ ├── nnfx-dark.css │ │ │ ├── nnfx-light.css │ │ │ ├── nord.css │ │ │ ├── obsidian.css │ │ │ ├── panda-syntax-dark.css │ │ │ ├── panda-syntax-light.css │ │ │ ├── paraiso-dark.css │ │ │ ├── paraiso-light.css │ │ │ ├── purebasic.css │ │ │ ├── qtcreator-dark.css │ │ │ ├── qtcreator-light.css │ │ │ ├── rainbow.css │ │ │ ├── rose-pine-dawn.css │ │ │ ├── rose-pine-moon.css │ │ │ ├── rose-pine.css │ │ │ ├── routeros.css │ │ │ ├── school-book.css │ │ │ ├── shades-of-purple.css │ │ │ ├── srcery.css │ │ │ ├── stackoverflow-dark.css │ │ │ ├── stackoverflow-light.css │ │ │ ├── styles.json │ │ │ ├── sunburst.css │ │ │ ├── tokyo-night-dark.css │ │ │ ├── tokyo-night-light.css │ │ │ ├── tomorrow-night-blue.css │ │ │ ├── tomorrow-night-bright.css │ │ │ ├── vs.css │ │ │ ├── vs2015.css │ │ │ ├── xcode.css │ │ │ └── xt256.css │ │ ├── jsHtmlToText.js │ │ ├── markdown-here.js │ │ ├── markdown-render.js │ │ ├── marked.js │ │ ├── mdh-html-to-text.js │ │ ├── options-iframe.html │ │ ├── options-iframe.js │ │ ├── options-store.js │ │ ├── options.html │ │ ├── options.js │ │ ├── test/ │ │ │ ├── chai.js │ │ │ ├── common-logic-test.js │ │ │ ├── index.html │ │ │ ├── markdown-here-test.js │ │ │ ├── markdown-render-test.js │ │ │ ├── mdh-html-to-text-test.js │ │ │ ├── mocha.css │ │ │ ├── mocha.js │ │ │ ├── options-store-test.js │ │ │ ├── test-prep.js │ │ │ ├── test-run.js │ │ │ ├── underscore.js │ │ │ └── utils-test.js │ │ └── utils.js │ └── manifest.json ├── store-assets/ │ ├── amo-reviewer-notes.txt │ ├── description.txt │ ├── markdown-here-chrome-options-1.gimp.xcf │ ├── markdown-here-image1.gimp.xcf │ ├── markdown-here-image2.gimp.xcf │ ├── markdown-here-image2.txt │ ├── markdown-here-promo-small.gimp.xcf │ ├── md-for-screenshot.md.txt │ └── screenshot-captions.txt ├── test/ │ └── index.html └── utils/ ├── build.js └── package.json