├── .gitattributes ├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── .nvmrc ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── app ├── background.ts ├── contextMenu.ts ├── contextMenuInject.ts ├── definitions.ts ├── download.ts ├── enums.ts ├── logger.ts ├── openTabs.ts ├── options.tsx ├── page_inject.tsx ├── plugins │ ├── base.ts │ ├── deviantart.ts │ ├── e621.ts │ ├── ekas.ts │ ├── furaffinity.ts │ ├── furrynetwork.ts │ ├── gfx.ts │ ├── hentaifoundry.ts │ ├── hiccears.ts │ ├── index.ts │ ├── inkbunny.ts │ ├── itaku.ts │ ├── newgrounds.ts │ ├── patreon.ts │ ├── shorpy.ts │ ├── sofurry.ts │ ├── subscribestar.ts │ ├── tumblr.ts │ └── weasyl.ts ├── settings.ts ├── typedefs.d.ts ├── ui │ ├── page │ │ ├── actionButton.tsx │ │ ├── common.tsx │ │ ├── hotkeys.ts │ │ ├── icons.tsx │ │ ├── page.tsx │ │ ├── pageOverlay.tsx │ │ └── settingsUi.tsx │ ├── pageListeners.ts │ ├── siteActions.ts │ └── siteSettingsUi.tsx └── utils │ ├── dom.ts │ ├── file.ts │ ├── messaging.ts │ ├── sleep.ts │ └── taskQueue.ts ├── docs └── images │ ├── context-menu.png │ ├── global-settings-reset.png │ ├── global-settings.png │ ├── head-download-exitfull.png │ ├── head-download-fullscreen.png │ ├── head-downloaded-openfolder-fullscreen.png │ ├── head-gear-menu.png │ ├── head-icon-gallery.png │ ├── head-icon-submission.png │ └── head-open-all.png ├── gulpfile.js ├── manifest ├── chrome.json ├── firefox.json └── manifest.json ├── package.json ├── src ├── check-o.svg ├── close.svg ├── danger.svg ├── folder.svg ├── options.html ├── overlayUi.css ├── raccoon.svg ├── scrufflogo.png ├── settings-outline.svg ├── software-download.svg ├── spinner.svg ├── tab.svg ├── zoom-in.svg └── zoom-out.svg ├── tsconfig.json ├── typings ├── debounce.d.ts └── react-image-lightbox.d.ts └── updates.json /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon-Tesla/RaccoonyWebEx/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon-Tesla/RaccoonyWebEx/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon-Tesla/RaccoonyWebEx/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon-Tesla/RaccoonyWebEx/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | lts/* 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon-Tesla/RaccoonyWebEx/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon-Tesla/RaccoonyWebEx/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon-Tesla/RaccoonyWebEx/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon-Tesla/RaccoonyWebEx/HEAD/README.md -------------------------------------------------------------------------------- /app/background.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon-Tesla/RaccoonyWebEx/HEAD/app/background.ts -------------------------------------------------------------------------------- /app/contextMenu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon-Tesla/RaccoonyWebEx/HEAD/app/contextMenu.ts -------------------------------------------------------------------------------- /app/contextMenuInject.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon-Tesla/RaccoonyWebEx/HEAD/app/contextMenuInject.ts -------------------------------------------------------------------------------- /app/definitions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon-Tesla/RaccoonyWebEx/HEAD/app/definitions.ts -------------------------------------------------------------------------------- /app/download.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon-Tesla/RaccoonyWebEx/HEAD/app/download.ts -------------------------------------------------------------------------------- /app/enums.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon-Tesla/RaccoonyWebEx/HEAD/app/enums.ts -------------------------------------------------------------------------------- /app/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon-Tesla/RaccoonyWebEx/HEAD/app/logger.ts -------------------------------------------------------------------------------- /app/openTabs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon-Tesla/RaccoonyWebEx/HEAD/app/openTabs.ts -------------------------------------------------------------------------------- /app/options.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon-Tesla/RaccoonyWebEx/HEAD/app/options.tsx -------------------------------------------------------------------------------- /app/page_inject.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon-Tesla/RaccoonyWebEx/HEAD/app/page_inject.tsx -------------------------------------------------------------------------------- /app/plugins/base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon-Tesla/RaccoonyWebEx/HEAD/app/plugins/base.ts -------------------------------------------------------------------------------- /app/plugins/deviantart.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon-Tesla/RaccoonyWebEx/HEAD/app/plugins/deviantart.ts -------------------------------------------------------------------------------- /app/plugins/e621.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon-Tesla/RaccoonyWebEx/HEAD/app/plugins/e621.ts -------------------------------------------------------------------------------- /app/plugins/ekas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon-Tesla/RaccoonyWebEx/HEAD/app/plugins/ekas.ts -------------------------------------------------------------------------------- /app/plugins/furaffinity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon-Tesla/RaccoonyWebEx/HEAD/app/plugins/furaffinity.ts -------------------------------------------------------------------------------- /app/plugins/furrynetwork.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon-Tesla/RaccoonyWebEx/HEAD/app/plugins/furrynetwork.ts -------------------------------------------------------------------------------- /app/plugins/gfx.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon-Tesla/RaccoonyWebEx/HEAD/app/plugins/gfx.ts -------------------------------------------------------------------------------- /app/plugins/hentaifoundry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon-Tesla/RaccoonyWebEx/HEAD/app/plugins/hentaifoundry.ts -------------------------------------------------------------------------------- /app/plugins/hiccears.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon-Tesla/RaccoonyWebEx/HEAD/app/plugins/hiccears.ts -------------------------------------------------------------------------------- /app/plugins/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon-Tesla/RaccoonyWebEx/HEAD/app/plugins/index.ts -------------------------------------------------------------------------------- /app/plugins/inkbunny.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon-Tesla/RaccoonyWebEx/HEAD/app/plugins/inkbunny.ts -------------------------------------------------------------------------------- /app/plugins/itaku.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon-Tesla/RaccoonyWebEx/HEAD/app/plugins/itaku.ts -------------------------------------------------------------------------------- /app/plugins/newgrounds.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon-Tesla/RaccoonyWebEx/HEAD/app/plugins/newgrounds.ts -------------------------------------------------------------------------------- /app/plugins/patreon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon-Tesla/RaccoonyWebEx/HEAD/app/plugins/patreon.ts -------------------------------------------------------------------------------- /app/plugins/shorpy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon-Tesla/RaccoonyWebEx/HEAD/app/plugins/shorpy.ts -------------------------------------------------------------------------------- /app/plugins/sofurry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon-Tesla/RaccoonyWebEx/HEAD/app/plugins/sofurry.ts -------------------------------------------------------------------------------- /app/plugins/subscribestar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon-Tesla/RaccoonyWebEx/HEAD/app/plugins/subscribestar.ts -------------------------------------------------------------------------------- /app/plugins/tumblr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon-Tesla/RaccoonyWebEx/HEAD/app/plugins/tumblr.ts -------------------------------------------------------------------------------- /app/plugins/weasyl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon-Tesla/RaccoonyWebEx/HEAD/app/plugins/weasyl.ts -------------------------------------------------------------------------------- /app/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon-Tesla/RaccoonyWebEx/HEAD/app/settings.ts -------------------------------------------------------------------------------- /app/typedefs.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon-Tesla/RaccoonyWebEx/HEAD/app/typedefs.d.ts -------------------------------------------------------------------------------- /app/ui/page/actionButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon-Tesla/RaccoonyWebEx/HEAD/app/ui/page/actionButton.tsx -------------------------------------------------------------------------------- /app/ui/page/common.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon-Tesla/RaccoonyWebEx/HEAD/app/ui/page/common.tsx -------------------------------------------------------------------------------- /app/ui/page/hotkeys.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon-Tesla/RaccoonyWebEx/HEAD/app/ui/page/hotkeys.ts -------------------------------------------------------------------------------- /app/ui/page/icons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon-Tesla/RaccoonyWebEx/HEAD/app/ui/page/icons.tsx -------------------------------------------------------------------------------- /app/ui/page/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon-Tesla/RaccoonyWebEx/HEAD/app/ui/page/page.tsx -------------------------------------------------------------------------------- /app/ui/page/pageOverlay.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon-Tesla/RaccoonyWebEx/HEAD/app/ui/page/pageOverlay.tsx -------------------------------------------------------------------------------- /app/ui/page/settingsUi.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon-Tesla/RaccoonyWebEx/HEAD/app/ui/page/settingsUi.tsx -------------------------------------------------------------------------------- /app/ui/pageListeners.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon-Tesla/RaccoonyWebEx/HEAD/app/ui/pageListeners.ts -------------------------------------------------------------------------------- /app/ui/siteActions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon-Tesla/RaccoonyWebEx/HEAD/app/ui/siteActions.ts -------------------------------------------------------------------------------- /app/ui/siteSettingsUi.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon-Tesla/RaccoonyWebEx/HEAD/app/ui/siteSettingsUi.tsx -------------------------------------------------------------------------------- /app/utils/dom.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon-Tesla/RaccoonyWebEx/HEAD/app/utils/dom.ts -------------------------------------------------------------------------------- /app/utils/file.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon-Tesla/RaccoonyWebEx/HEAD/app/utils/file.ts -------------------------------------------------------------------------------- /app/utils/messaging.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon-Tesla/RaccoonyWebEx/HEAD/app/utils/messaging.ts -------------------------------------------------------------------------------- /app/utils/sleep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon-Tesla/RaccoonyWebEx/HEAD/app/utils/sleep.ts -------------------------------------------------------------------------------- /app/utils/taskQueue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon-Tesla/RaccoonyWebEx/HEAD/app/utils/taskQueue.ts -------------------------------------------------------------------------------- /docs/images/context-menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon-Tesla/RaccoonyWebEx/HEAD/docs/images/context-menu.png -------------------------------------------------------------------------------- /docs/images/global-settings-reset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon-Tesla/RaccoonyWebEx/HEAD/docs/images/global-settings-reset.png -------------------------------------------------------------------------------- /docs/images/global-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon-Tesla/RaccoonyWebEx/HEAD/docs/images/global-settings.png -------------------------------------------------------------------------------- /docs/images/head-download-exitfull.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon-Tesla/RaccoonyWebEx/HEAD/docs/images/head-download-exitfull.png -------------------------------------------------------------------------------- /docs/images/head-download-fullscreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon-Tesla/RaccoonyWebEx/HEAD/docs/images/head-download-fullscreen.png -------------------------------------------------------------------------------- /docs/images/head-downloaded-openfolder-fullscreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon-Tesla/RaccoonyWebEx/HEAD/docs/images/head-downloaded-openfolder-fullscreen.png -------------------------------------------------------------------------------- /docs/images/head-gear-menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon-Tesla/RaccoonyWebEx/HEAD/docs/images/head-gear-menu.png -------------------------------------------------------------------------------- /docs/images/head-icon-gallery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon-Tesla/RaccoonyWebEx/HEAD/docs/images/head-icon-gallery.png -------------------------------------------------------------------------------- /docs/images/head-icon-submission.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon-Tesla/RaccoonyWebEx/HEAD/docs/images/head-icon-submission.png -------------------------------------------------------------------------------- /docs/images/head-open-all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon-Tesla/RaccoonyWebEx/HEAD/docs/images/head-open-all.png -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon-Tesla/RaccoonyWebEx/HEAD/gulpfile.js -------------------------------------------------------------------------------- /manifest/chrome.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /manifest/firefox.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon-Tesla/RaccoonyWebEx/HEAD/manifest/firefox.json -------------------------------------------------------------------------------- /manifest/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon-Tesla/RaccoonyWebEx/HEAD/manifest/manifest.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon-Tesla/RaccoonyWebEx/HEAD/package.json -------------------------------------------------------------------------------- /src/check-o.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon-Tesla/RaccoonyWebEx/HEAD/src/check-o.svg -------------------------------------------------------------------------------- /src/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon-Tesla/RaccoonyWebEx/HEAD/src/close.svg -------------------------------------------------------------------------------- /src/danger.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon-Tesla/RaccoonyWebEx/HEAD/src/danger.svg -------------------------------------------------------------------------------- /src/folder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon-Tesla/RaccoonyWebEx/HEAD/src/folder.svg -------------------------------------------------------------------------------- /src/options.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon-Tesla/RaccoonyWebEx/HEAD/src/options.html -------------------------------------------------------------------------------- /src/overlayUi.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon-Tesla/RaccoonyWebEx/HEAD/src/overlayUi.css -------------------------------------------------------------------------------- /src/raccoon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon-Tesla/RaccoonyWebEx/HEAD/src/raccoon.svg -------------------------------------------------------------------------------- /src/scrufflogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon-Tesla/RaccoonyWebEx/HEAD/src/scrufflogo.png -------------------------------------------------------------------------------- /src/settings-outline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon-Tesla/RaccoonyWebEx/HEAD/src/settings-outline.svg -------------------------------------------------------------------------------- /src/software-download.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon-Tesla/RaccoonyWebEx/HEAD/src/software-download.svg -------------------------------------------------------------------------------- /src/spinner.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon-Tesla/RaccoonyWebEx/HEAD/src/spinner.svg -------------------------------------------------------------------------------- /src/tab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon-Tesla/RaccoonyWebEx/HEAD/src/tab.svg -------------------------------------------------------------------------------- /src/zoom-in.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon-Tesla/RaccoonyWebEx/HEAD/src/zoom-in.svg -------------------------------------------------------------------------------- /src/zoom-out.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon-Tesla/RaccoonyWebEx/HEAD/src/zoom-out.svg -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon-Tesla/RaccoonyWebEx/HEAD/tsconfig.json -------------------------------------------------------------------------------- /typings/debounce.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon-Tesla/RaccoonyWebEx/HEAD/typings/debounce.d.ts -------------------------------------------------------------------------------- /typings/react-image-lightbox.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon-Tesla/RaccoonyWebEx/HEAD/typings/react-image-lightbox.d.ts -------------------------------------------------------------------------------- /updates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon-Tesla/RaccoonyWebEx/HEAD/updates.json --------------------------------------------------------------------------------