├── .github └── workflows │ ├── monitor-manifest.yml │ └── sentry-release.yml ├── .gitignore ├── .nvmrc ├── .prettierignore ├── .prettierrc ├── .vscode ├── extensions.json └── settings.json ├── README.md ├── beta-updates.json ├── manifest.beta.json ├── manifest.dev.json ├── manifest.json ├── package.json ├── scripts ├── combineJsonFiles.js └── patchManifestForFirefox.js ├── src ├── assets │ ├── buster-icon-128.png │ ├── buster-icon-16.png │ └── buster-icon-48.png ├── background │ └── background.ts ├── contentscript │ ├── contentscript.sass │ ├── contentscript.ts │ └── handlers │ │ ├── all.ts │ │ ├── handler.ts │ │ ├── index.ts │ │ ├── phantombuster.ts │ │ ├── phantombusterNewSetup.ts │ │ ├── phantombusterOldSetup.ts │ │ └── zapierCustomizeLaunch.ts ├── inject │ └── switchCookies.ts └── shared │ ├── cookies.ts │ ├── inject.ts │ ├── messages.ts │ ├── sentry.ts │ └── websites.ts ├── tsconfig.json ├── tslint.json └── webpack.config.js /.github/workflows/monitor-manifest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/web-browser-extension/HEAD/.github/workflows/monitor-manifest.yml -------------------------------------------------------------------------------- /.github/workflows/sentry-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/web-browser-extension/HEAD/.github/workflows/sentry-release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/web-browser-extension/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 16.13.0 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | dist/ 3 | beta/ -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/web-browser-extension/HEAD/.prettierrc -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/web-browser-extension/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/web-browser-extension/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/web-browser-extension/HEAD/README.md -------------------------------------------------------------------------------- /beta-updates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/web-browser-extension/HEAD/beta-updates.json -------------------------------------------------------------------------------- /manifest.beta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/web-browser-extension/HEAD/manifest.beta.json -------------------------------------------------------------------------------- /manifest.dev.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/web-browser-extension/HEAD/manifest.dev.json -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/web-browser-extension/HEAD/manifest.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/web-browser-extension/HEAD/package.json -------------------------------------------------------------------------------- /scripts/combineJsonFiles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/web-browser-extension/HEAD/scripts/combineJsonFiles.js -------------------------------------------------------------------------------- /scripts/patchManifestForFirefox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/web-browser-extension/HEAD/scripts/patchManifestForFirefox.js -------------------------------------------------------------------------------- /src/assets/buster-icon-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/web-browser-extension/HEAD/src/assets/buster-icon-128.png -------------------------------------------------------------------------------- /src/assets/buster-icon-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/web-browser-extension/HEAD/src/assets/buster-icon-16.png -------------------------------------------------------------------------------- /src/assets/buster-icon-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/web-browser-extension/HEAD/src/assets/buster-icon-48.png -------------------------------------------------------------------------------- /src/background/background.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/web-browser-extension/HEAD/src/background/background.ts -------------------------------------------------------------------------------- /src/contentscript/contentscript.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/web-browser-extension/HEAD/src/contentscript/contentscript.sass -------------------------------------------------------------------------------- /src/contentscript/contentscript.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/web-browser-extension/HEAD/src/contentscript/contentscript.ts -------------------------------------------------------------------------------- /src/contentscript/handlers/all.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/web-browser-extension/HEAD/src/contentscript/handlers/all.ts -------------------------------------------------------------------------------- /src/contentscript/handlers/handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/web-browser-extension/HEAD/src/contentscript/handlers/handler.ts -------------------------------------------------------------------------------- /src/contentscript/handlers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/web-browser-extension/HEAD/src/contentscript/handlers/index.ts -------------------------------------------------------------------------------- /src/contentscript/handlers/phantombuster.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/web-browser-extension/HEAD/src/contentscript/handlers/phantombuster.ts -------------------------------------------------------------------------------- /src/contentscript/handlers/phantombusterNewSetup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/web-browser-extension/HEAD/src/contentscript/handlers/phantombusterNewSetup.ts -------------------------------------------------------------------------------- /src/contentscript/handlers/phantombusterOldSetup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/web-browser-extension/HEAD/src/contentscript/handlers/phantombusterOldSetup.ts -------------------------------------------------------------------------------- /src/contentscript/handlers/zapierCustomizeLaunch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/web-browser-extension/HEAD/src/contentscript/handlers/zapierCustomizeLaunch.ts -------------------------------------------------------------------------------- /src/inject/switchCookies.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/web-browser-extension/HEAD/src/inject/switchCookies.ts -------------------------------------------------------------------------------- /src/shared/cookies.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/web-browser-extension/HEAD/src/shared/cookies.ts -------------------------------------------------------------------------------- /src/shared/inject.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/web-browser-extension/HEAD/src/shared/inject.ts -------------------------------------------------------------------------------- /src/shared/messages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/web-browser-extension/HEAD/src/shared/messages.ts -------------------------------------------------------------------------------- /src/shared/sentry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/web-browser-extension/HEAD/src/shared/sentry.ts -------------------------------------------------------------------------------- /src/shared/websites.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/web-browser-extension/HEAD/src/shared/websites.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/web-browser-extension/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/web-browser-extension/HEAD/tslint.json -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedev935/web-browser-extension/HEAD/webpack.config.js --------------------------------------------------------------------------------