├── .github └── FUNDING.yml ├── .gitignore ├── LICENSE ├── README.md ├── branchSetups ├── betterDiscord.sh ├── goosemod.sh └── smartcord.sh ├── branches ├── mod │ ├── betterdiscord │ │ └── patch.js │ ├── goosemod │ │ └── patch.js │ └── smartcord │ │ └── patch.js └── tool │ └── reactdevtools │ ├── ext │ ├── _metadata │ │ └── verified_contents.json │ ├── build │ │ ├── background.js │ │ ├── contentScript.js │ │ ├── injectGlobalHook.js │ │ ├── main.js │ │ ├── panel.js │ │ ├── react_devtools_backend.js │ │ └── renderer.js │ ├── icons │ │ ├── 128-deadcode.png │ │ ├── 128-development.png │ │ ├── 128-disabled.png │ │ ├── 128-outdated.png │ │ ├── 128-production.png │ │ ├── 128-restricted.png │ │ ├── 128-unminified.png │ │ ├── 16-deadcode.png │ │ ├── 16-development.png │ │ ├── 16-disabled.png │ │ ├── 16-outdated.png │ │ ├── 16-production.png │ │ ├── 16-restricted.png │ │ ├── 16-unminified.png │ │ ├── 32-deadcode.png │ │ ├── 32-development.png │ │ ├── 32-disabled.png │ │ ├── 32-outdated.png │ │ ├── 32-production.png │ │ ├── 32-restricted.png │ │ ├── 32-unminified.png │ │ ├── 48-deadcode.png │ │ ├── 48-development.png │ │ ├── 48-disabled.png │ │ ├── 48-outdated.png │ │ ├── 48-production.png │ │ ├── 48-restricted.png │ │ ├── 48-unminified.png │ │ ├── deadcode.svg │ │ ├── development.svg │ │ ├── disabled.svg │ │ ├── outdated.svg │ │ ├── production.svg │ │ └── restricted.svg │ ├── main.html │ ├── manifest.fingerprint │ ├── manifest.json │ ├── panel.html │ └── popups │ │ ├── deadcode.html │ │ ├── development.html │ │ ├── disabled.html │ │ ├── outdated.html │ │ ├── production.html │ │ ├── restricted.html │ │ ├── shared.css │ │ ├── shared.js │ │ └── unminified.html │ └── patch.js ├── example.config.js ├── package.json └── src ├── apiV1 ├── branchesLoader.js ├── dashboard │ ├── index.js │ └── template.html ├── index.js ├── requests │ ├── host │ │ ├── linux.js │ │ └── squirrel.js │ ├── index.js │ ├── moduleDownload │ │ ├── index.js │ │ └── patchModule.js │ └── modules.js └── v2Migration.js ├── apiV2 ├── index.js ├── manifest.js ├── module.js └── patchModule.js ├── generic ├── lib.js ├── proxy │ ├── cache.js │ └── index.js └── redirect.js ├── guAPI ├── branches.js ├── goosemodDev.js └── index.js ├── index.js └── webhook.js /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: CanadaHonk 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goose-Nest/GooseUpdate/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goose-Nest/GooseUpdate/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goose-Nest/GooseUpdate/HEAD/README.md -------------------------------------------------------------------------------- /branchSetups/betterDiscord.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goose-Nest/GooseUpdate/HEAD/branchSetups/betterDiscord.sh -------------------------------------------------------------------------------- /branchSetups/goosemod.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goose-Nest/GooseUpdate/HEAD/branchSetups/goosemod.sh -------------------------------------------------------------------------------- /branchSetups/smartcord.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goose-Nest/GooseUpdate/HEAD/branchSetups/smartcord.sh -------------------------------------------------------------------------------- /branches/mod/betterdiscord/patch.js: -------------------------------------------------------------------------------- 1 | require('./betterdiscord.asar'); -------------------------------------------------------------------------------- /branches/mod/goosemod/patch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goose-Nest/GooseUpdate/HEAD/branches/mod/goosemod/patch.js -------------------------------------------------------------------------------- /branches/mod/smartcord/patch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goose-Nest/GooseUpdate/HEAD/branches/mod/smartcord/patch.js -------------------------------------------------------------------------------- /branches/tool/reactdevtools/ext/_metadata/verified_contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goose-Nest/GooseUpdate/HEAD/branches/tool/reactdevtools/ext/_metadata/verified_contents.json -------------------------------------------------------------------------------- /branches/tool/reactdevtools/ext/build/background.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goose-Nest/GooseUpdate/HEAD/branches/tool/reactdevtools/ext/build/background.js -------------------------------------------------------------------------------- /branches/tool/reactdevtools/ext/build/contentScript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goose-Nest/GooseUpdate/HEAD/branches/tool/reactdevtools/ext/build/contentScript.js -------------------------------------------------------------------------------- /branches/tool/reactdevtools/ext/build/injectGlobalHook.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goose-Nest/GooseUpdate/HEAD/branches/tool/reactdevtools/ext/build/injectGlobalHook.js -------------------------------------------------------------------------------- /branches/tool/reactdevtools/ext/build/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goose-Nest/GooseUpdate/HEAD/branches/tool/reactdevtools/ext/build/main.js -------------------------------------------------------------------------------- /branches/tool/reactdevtools/ext/build/panel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goose-Nest/GooseUpdate/HEAD/branches/tool/reactdevtools/ext/build/panel.js -------------------------------------------------------------------------------- /branches/tool/reactdevtools/ext/build/react_devtools_backend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goose-Nest/GooseUpdate/HEAD/branches/tool/reactdevtools/ext/build/react_devtools_backend.js -------------------------------------------------------------------------------- /branches/tool/reactdevtools/ext/build/renderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goose-Nest/GooseUpdate/HEAD/branches/tool/reactdevtools/ext/build/renderer.js -------------------------------------------------------------------------------- /branches/tool/reactdevtools/ext/icons/128-deadcode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goose-Nest/GooseUpdate/HEAD/branches/tool/reactdevtools/ext/icons/128-deadcode.png -------------------------------------------------------------------------------- /branches/tool/reactdevtools/ext/icons/128-development.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goose-Nest/GooseUpdate/HEAD/branches/tool/reactdevtools/ext/icons/128-development.png -------------------------------------------------------------------------------- /branches/tool/reactdevtools/ext/icons/128-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goose-Nest/GooseUpdate/HEAD/branches/tool/reactdevtools/ext/icons/128-disabled.png -------------------------------------------------------------------------------- /branches/tool/reactdevtools/ext/icons/128-outdated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goose-Nest/GooseUpdate/HEAD/branches/tool/reactdevtools/ext/icons/128-outdated.png -------------------------------------------------------------------------------- /branches/tool/reactdevtools/ext/icons/128-production.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goose-Nest/GooseUpdate/HEAD/branches/tool/reactdevtools/ext/icons/128-production.png -------------------------------------------------------------------------------- /branches/tool/reactdevtools/ext/icons/128-restricted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goose-Nest/GooseUpdate/HEAD/branches/tool/reactdevtools/ext/icons/128-restricted.png -------------------------------------------------------------------------------- /branches/tool/reactdevtools/ext/icons/128-unminified.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goose-Nest/GooseUpdate/HEAD/branches/tool/reactdevtools/ext/icons/128-unminified.png -------------------------------------------------------------------------------- /branches/tool/reactdevtools/ext/icons/16-deadcode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goose-Nest/GooseUpdate/HEAD/branches/tool/reactdevtools/ext/icons/16-deadcode.png -------------------------------------------------------------------------------- /branches/tool/reactdevtools/ext/icons/16-development.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goose-Nest/GooseUpdate/HEAD/branches/tool/reactdevtools/ext/icons/16-development.png -------------------------------------------------------------------------------- /branches/tool/reactdevtools/ext/icons/16-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goose-Nest/GooseUpdate/HEAD/branches/tool/reactdevtools/ext/icons/16-disabled.png -------------------------------------------------------------------------------- /branches/tool/reactdevtools/ext/icons/16-outdated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goose-Nest/GooseUpdate/HEAD/branches/tool/reactdevtools/ext/icons/16-outdated.png -------------------------------------------------------------------------------- /branches/tool/reactdevtools/ext/icons/16-production.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goose-Nest/GooseUpdate/HEAD/branches/tool/reactdevtools/ext/icons/16-production.png -------------------------------------------------------------------------------- /branches/tool/reactdevtools/ext/icons/16-restricted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goose-Nest/GooseUpdate/HEAD/branches/tool/reactdevtools/ext/icons/16-restricted.png -------------------------------------------------------------------------------- /branches/tool/reactdevtools/ext/icons/16-unminified.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goose-Nest/GooseUpdate/HEAD/branches/tool/reactdevtools/ext/icons/16-unminified.png -------------------------------------------------------------------------------- /branches/tool/reactdevtools/ext/icons/32-deadcode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goose-Nest/GooseUpdate/HEAD/branches/tool/reactdevtools/ext/icons/32-deadcode.png -------------------------------------------------------------------------------- /branches/tool/reactdevtools/ext/icons/32-development.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goose-Nest/GooseUpdate/HEAD/branches/tool/reactdevtools/ext/icons/32-development.png -------------------------------------------------------------------------------- /branches/tool/reactdevtools/ext/icons/32-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goose-Nest/GooseUpdate/HEAD/branches/tool/reactdevtools/ext/icons/32-disabled.png -------------------------------------------------------------------------------- /branches/tool/reactdevtools/ext/icons/32-outdated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goose-Nest/GooseUpdate/HEAD/branches/tool/reactdevtools/ext/icons/32-outdated.png -------------------------------------------------------------------------------- /branches/tool/reactdevtools/ext/icons/32-production.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goose-Nest/GooseUpdate/HEAD/branches/tool/reactdevtools/ext/icons/32-production.png -------------------------------------------------------------------------------- /branches/tool/reactdevtools/ext/icons/32-restricted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goose-Nest/GooseUpdate/HEAD/branches/tool/reactdevtools/ext/icons/32-restricted.png -------------------------------------------------------------------------------- /branches/tool/reactdevtools/ext/icons/32-unminified.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goose-Nest/GooseUpdate/HEAD/branches/tool/reactdevtools/ext/icons/32-unminified.png -------------------------------------------------------------------------------- /branches/tool/reactdevtools/ext/icons/48-deadcode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goose-Nest/GooseUpdate/HEAD/branches/tool/reactdevtools/ext/icons/48-deadcode.png -------------------------------------------------------------------------------- /branches/tool/reactdevtools/ext/icons/48-development.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goose-Nest/GooseUpdate/HEAD/branches/tool/reactdevtools/ext/icons/48-development.png -------------------------------------------------------------------------------- /branches/tool/reactdevtools/ext/icons/48-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goose-Nest/GooseUpdate/HEAD/branches/tool/reactdevtools/ext/icons/48-disabled.png -------------------------------------------------------------------------------- /branches/tool/reactdevtools/ext/icons/48-outdated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goose-Nest/GooseUpdate/HEAD/branches/tool/reactdevtools/ext/icons/48-outdated.png -------------------------------------------------------------------------------- /branches/tool/reactdevtools/ext/icons/48-production.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goose-Nest/GooseUpdate/HEAD/branches/tool/reactdevtools/ext/icons/48-production.png -------------------------------------------------------------------------------- /branches/tool/reactdevtools/ext/icons/48-restricted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goose-Nest/GooseUpdate/HEAD/branches/tool/reactdevtools/ext/icons/48-restricted.png -------------------------------------------------------------------------------- /branches/tool/reactdevtools/ext/icons/48-unminified.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goose-Nest/GooseUpdate/HEAD/branches/tool/reactdevtools/ext/icons/48-unminified.png -------------------------------------------------------------------------------- /branches/tool/reactdevtools/ext/icons/deadcode.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goose-Nest/GooseUpdate/HEAD/branches/tool/reactdevtools/ext/icons/deadcode.svg -------------------------------------------------------------------------------- /branches/tool/reactdevtools/ext/icons/development.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goose-Nest/GooseUpdate/HEAD/branches/tool/reactdevtools/ext/icons/development.svg -------------------------------------------------------------------------------- /branches/tool/reactdevtools/ext/icons/disabled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goose-Nest/GooseUpdate/HEAD/branches/tool/reactdevtools/ext/icons/disabled.svg -------------------------------------------------------------------------------- /branches/tool/reactdevtools/ext/icons/outdated.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goose-Nest/GooseUpdate/HEAD/branches/tool/reactdevtools/ext/icons/outdated.svg -------------------------------------------------------------------------------- /branches/tool/reactdevtools/ext/icons/production.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goose-Nest/GooseUpdate/HEAD/branches/tool/reactdevtools/ext/icons/production.svg -------------------------------------------------------------------------------- /branches/tool/reactdevtools/ext/icons/restricted.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goose-Nest/GooseUpdate/HEAD/branches/tool/reactdevtools/ext/icons/restricted.svg -------------------------------------------------------------------------------- /branches/tool/reactdevtools/ext/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goose-Nest/GooseUpdate/HEAD/branches/tool/reactdevtools/ext/main.html -------------------------------------------------------------------------------- /branches/tool/reactdevtools/ext/manifest.fingerprint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goose-Nest/GooseUpdate/HEAD/branches/tool/reactdevtools/ext/manifest.fingerprint -------------------------------------------------------------------------------- /branches/tool/reactdevtools/ext/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goose-Nest/GooseUpdate/HEAD/branches/tool/reactdevtools/ext/manifest.json -------------------------------------------------------------------------------- /branches/tool/reactdevtools/ext/panel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goose-Nest/GooseUpdate/HEAD/branches/tool/reactdevtools/ext/panel.html -------------------------------------------------------------------------------- /branches/tool/reactdevtools/ext/popups/deadcode.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goose-Nest/GooseUpdate/HEAD/branches/tool/reactdevtools/ext/popups/deadcode.html -------------------------------------------------------------------------------- /branches/tool/reactdevtools/ext/popups/development.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goose-Nest/GooseUpdate/HEAD/branches/tool/reactdevtools/ext/popups/development.html -------------------------------------------------------------------------------- /branches/tool/reactdevtools/ext/popups/disabled.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goose-Nest/GooseUpdate/HEAD/branches/tool/reactdevtools/ext/popups/disabled.html -------------------------------------------------------------------------------- /branches/tool/reactdevtools/ext/popups/outdated.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goose-Nest/GooseUpdate/HEAD/branches/tool/reactdevtools/ext/popups/outdated.html -------------------------------------------------------------------------------- /branches/tool/reactdevtools/ext/popups/production.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goose-Nest/GooseUpdate/HEAD/branches/tool/reactdevtools/ext/popups/production.html -------------------------------------------------------------------------------- /branches/tool/reactdevtools/ext/popups/restricted.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goose-Nest/GooseUpdate/HEAD/branches/tool/reactdevtools/ext/popups/restricted.html -------------------------------------------------------------------------------- /branches/tool/reactdevtools/ext/popups/shared.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goose-Nest/GooseUpdate/HEAD/branches/tool/reactdevtools/ext/popups/shared.css -------------------------------------------------------------------------------- /branches/tool/reactdevtools/ext/popups/shared.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goose-Nest/GooseUpdate/HEAD/branches/tool/reactdevtools/ext/popups/shared.js -------------------------------------------------------------------------------- /branches/tool/reactdevtools/ext/popups/unminified.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goose-Nest/GooseUpdate/HEAD/branches/tool/reactdevtools/ext/popups/unminified.html -------------------------------------------------------------------------------- /branches/tool/reactdevtools/patch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goose-Nest/GooseUpdate/HEAD/branches/tool/reactdevtools/patch.js -------------------------------------------------------------------------------- /example.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goose-Nest/GooseUpdate/HEAD/example.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goose-Nest/GooseUpdate/HEAD/package.json -------------------------------------------------------------------------------- /src/apiV1/branchesLoader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goose-Nest/GooseUpdate/HEAD/src/apiV1/branchesLoader.js -------------------------------------------------------------------------------- /src/apiV1/dashboard/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goose-Nest/GooseUpdate/HEAD/src/apiV1/dashboard/index.js -------------------------------------------------------------------------------- /src/apiV1/dashboard/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goose-Nest/GooseUpdate/HEAD/src/apiV1/dashboard/template.html -------------------------------------------------------------------------------- /src/apiV1/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goose-Nest/GooseUpdate/HEAD/src/apiV1/index.js -------------------------------------------------------------------------------- /src/apiV1/requests/host/linux.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goose-Nest/GooseUpdate/HEAD/src/apiV1/requests/host/linux.js -------------------------------------------------------------------------------- /src/apiV1/requests/host/squirrel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goose-Nest/GooseUpdate/HEAD/src/apiV1/requests/host/squirrel.js -------------------------------------------------------------------------------- /src/apiV1/requests/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goose-Nest/GooseUpdate/HEAD/src/apiV1/requests/index.js -------------------------------------------------------------------------------- /src/apiV1/requests/moduleDownload/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goose-Nest/GooseUpdate/HEAD/src/apiV1/requests/moduleDownload/index.js -------------------------------------------------------------------------------- /src/apiV1/requests/moduleDownload/patchModule.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goose-Nest/GooseUpdate/HEAD/src/apiV1/requests/moduleDownload/patchModule.js -------------------------------------------------------------------------------- /src/apiV1/requests/modules.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goose-Nest/GooseUpdate/HEAD/src/apiV1/requests/modules.js -------------------------------------------------------------------------------- /src/apiV1/v2Migration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goose-Nest/GooseUpdate/HEAD/src/apiV1/v2Migration.js -------------------------------------------------------------------------------- /src/apiV2/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goose-Nest/GooseUpdate/HEAD/src/apiV2/index.js -------------------------------------------------------------------------------- /src/apiV2/manifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goose-Nest/GooseUpdate/HEAD/src/apiV2/manifest.js -------------------------------------------------------------------------------- /src/apiV2/module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goose-Nest/GooseUpdate/HEAD/src/apiV2/module.js -------------------------------------------------------------------------------- /src/apiV2/patchModule.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goose-Nest/GooseUpdate/HEAD/src/apiV2/patchModule.js -------------------------------------------------------------------------------- /src/generic/lib.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goose-Nest/GooseUpdate/HEAD/src/generic/lib.js -------------------------------------------------------------------------------- /src/generic/proxy/cache.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goose-Nest/GooseUpdate/HEAD/src/generic/proxy/cache.js -------------------------------------------------------------------------------- /src/generic/proxy/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goose-Nest/GooseUpdate/HEAD/src/generic/proxy/index.js -------------------------------------------------------------------------------- /src/generic/redirect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goose-Nest/GooseUpdate/HEAD/src/generic/redirect.js -------------------------------------------------------------------------------- /src/guAPI/branches.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goose-Nest/GooseUpdate/HEAD/src/guAPI/branches.js -------------------------------------------------------------------------------- /src/guAPI/goosemodDev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goose-Nest/GooseUpdate/HEAD/src/guAPI/goosemodDev.js -------------------------------------------------------------------------------- /src/guAPI/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goose-Nest/GooseUpdate/HEAD/src/guAPI/index.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goose-Nest/GooseUpdate/HEAD/src/index.js -------------------------------------------------------------------------------- /src/webhook.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goose-Nest/GooseUpdate/HEAD/src/webhook.js --------------------------------------------------------------------------------