├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── BUG-REPORT.yml │ ├── EXTENSION-ISSUE.yml │ ├── EXTENSION-REQUEST.yml │ ├── FEATURE-REQUEST.yml │ └── config.yml └── workflows │ ├── build.yml │ └── release.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── backend ├── cors_proxy.py ├── logger │ ├── __init__.py │ └── logger.py ├── main.py ├── test.py └── websocket │ ├── __init__.py │ ├── client_manager.py │ ├── external.py │ ├── message_handler.py │ ├── message_types.py │ ├── request_handler.py │ └── server.py ├── bun.lock ├── eslint.config.mjs ├── frontend ├── TabManager.ts ├── browser │ ├── corsFetch.ts │ ├── createChrome.ts │ └── injectBrowser.tsx ├── callables.ts ├── classes.ts ├── components │ ├── ConfirmationModal.tsx │ ├── ExtensionBar │ │ ├── ExtensionButton.tsx │ │ ├── ExtensionContextMenu.tsx │ │ └── ExtensionsBar.tsx │ ├── ExtensionPopup.tsx │ ├── ExtensionSettingsPopup.tsx │ ├── Separator.tsx │ ├── SettingsModal.tsx │ ├── SteamComponents.tsx │ ├── Styles.tsx │ ├── ToolbarExtensionManager │ │ ├── ManagerExtensionItem.tsx │ │ ├── ToolbarManagerButton.tsx │ │ └── ToolbarManagerContextMenu.tsx │ └── stores │ │ ├── extensionsBarStore.ts │ │ └── popupsStore.ts ├── extensions-manager │ ├── Downloader │ │ └── download-manager.ts │ ├── ExtensionDetailInfo.tsx │ ├── ExtensionManagerComponent.tsx │ ├── ExtensionManagerPopup.tsx │ ├── ExtensionManagerRoot.tsx │ ├── InstallExtensionModal.tsx │ ├── RemoveModal.tsx │ ├── RestartModal.tsx │ ├── Settings │ │ ├── DynamicListManager.tsx │ │ ├── ExtendiumSettings.tsx │ │ ├── ExternalLinksMananger.tsx │ │ └── settingsStore.ts │ └── Storage │ │ └── StorageManager.tsx ├── index.tsx ├── onPopupCreation.tsx ├── shared.ts ├── tsconfig.json ├── updates │ ├── updateStore.ts │ └── updater.ts ├── urlBarPatch.tsx ├── urlSchemeHandler.ts ├── webkit.ts ├── websocket │ ├── MessageHandler.ts │ └── WebSocketServer.ts └── windowManagement.tsx ├── helpers ├── build_zip.py ├── generate-metadata.sh ├── publish.sh └── update-version.ts ├── images ├── extension-icon-fluenty.png ├── extension-icon.png └── install-extension.gif ├── package.json ├── patches └── @steambrew%2Fclient@5.8.0.patch ├── plugin.json ├── public └── extendium.scss ├── release.config.mjs ├── requirements.txt ├── shared └── extension │ ├── Action.ts │ ├── ChromeEvent.ts │ ├── Contexts.ts │ ├── EnumerableMethods.ts │ ├── Enums.ts │ ├── Extension.ts │ ├── Locale.ts │ ├── Logger.ts │ ├── Messaging.ts │ ├── Metadata.ts │ ├── Options.ts │ ├── Storage.ts │ ├── helpers │ └── safeProxy.ts │ ├── requests │ └── crossRequestKeys.ts │ ├── shared.ts │ ├── utils.ts │ └── websocket │ └── MessageTypes.ts ├── tsconfig.json └── webkit ├── ExtensionWrapper.ts ├── TabInject.ts ├── chromeInjectionContent.js ├── createChrome.ts ├── createContentScripts.ts ├── fake-header ├── fake-header-strings.ts ├── fake-header.ts └── legacy-header.html ├── index.tsx ├── linkModifier.ts ├── shared.ts ├── steam-requests └── handle-steam-requests.ts ├── tsconfig.json ├── webkit-extension └── WebkitStorage.ts └── websocket └── WebSocketClient.ts /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | ko_fi: boss_sloth -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/BUG-REPORT.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BossSloth/Extendium/HEAD/.github/ISSUE_TEMPLATE/BUG-REPORT.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/EXTENSION-ISSUE.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BossSloth/Extendium/HEAD/.github/ISSUE_TEMPLATE/EXTENSION-ISSUE.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/EXTENSION-REQUEST.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BossSloth/Extendium/HEAD/.github/ISSUE_TEMPLATE/EXTENSION-REQUEST.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/FEATURE-REQUEST.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BossSloth/Extendium/HEAD/.github/ISSUE_TEMPLATE/FEATURE-REQUEST.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BossSloth/Extendium/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BossSloth/Extendium/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BossSloth/Extendium/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BossSloth/Extendium/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BossSloth/Extendium/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BossSloth/Extendium/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BossSloth/Extendium/HEAD/README.md -------------------------------------------------------------------------------- /backend/cors_proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BossSloth/Extendium/HEAD/backend/cors_proxy.py -------------------------------------------------------------------------------- /backend/logger/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BossSloth/Extendium/HEAD/backend/logger/__init__.py -------------------------------------------------------------------------------- /backend/logger/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BossSloth/Extendium/HEAD/backend/logger/logger.py -------------------------------------------------------------------------------- /backend/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BossSloth/Extendium/HEAD/backend/main.py -------------------------------------------------------------------------------- /backend/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BossSloth/Extendium/HEAD/backend/test.py -------------------------------------------------------------------------------- /backend/websocket/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BossSloth/Extendium/HEAD/backend/websocket/__init__.py -------------------------------------------------------------------------------- /backend/websocket/client_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BossSloth/Extendium/HEAD/backend/websocket/client_manager.py -------------------------------------------------------------------------------- /backend/websocket/external.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BossSloth/Extendium/HEAD/backend/websocket/external.py -------------------------------------------------------------------------------- /backend/websocket/message_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BossSloth/Extendium/HEAD/backend/websocket/message_handler.py -------------------------------------------------------------------------------- /backend/websocket/message_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BossSloth/Extendium/HEAD/backend/websocket/message_types.py -------------------------------------------------------------------------------- /backend/websocket/request_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BossSloth/Extendium/HEAD/backend/websocket/request_handler.py -------------------------------------------------------------------------------- /backend/websocket/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BossSloth/Extendium/HEAD/backend/websocket/server.py -------------------------------------------------------------------------------- /bun.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BossSloth/Extendium/HEAD/bun.lock -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BossSloth/Extendium/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /frontend/TabManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BossSloth/Extendium/HEAD/frontend/TabManager.ts -------------------------------------------------------------------------------- /frontend/browser/corsFetch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BossSloth/Extendium/HEAD/frontend/browser/corsFetch.ts -------------------------------------------------------------------------------- /frontend/browser/createChrome.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BossSloth/Extendium/HEAD/frontend/browser/createChrome.ts -------------------------------------------------------------------------------- /frontend/browser/injectBrowser.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BossSloth/Extendium/HEAD/frontend/browser/injectBrowser.tsx -------------------------------------------------------------------------------- /frontend/callables.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BossSloth/Extendium/HEAD/frontend/callables.ts -------------------------------------------------------------------------------- /frontend/classes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BossSloth/Extendium/HEAD/frontend/classes.ts -------------------------------------------------------------------------------- /frontend/components/ConfirmationModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BossSloth/Extendium/HEAD/frontend/components/ConfirmationModal.tsx -------------------------------------------------------------------------------- /frontend/components/ExtensionBar/ExtensionButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BossSloth/Extendium/HEAD/frontend/components/ExtensionBar/ExtensionButton.tsx -------------------------------------------------------------------------------- /frontend/components/ExtensionBar/ExtensionContextMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BossSloth/Extendium/HEAD/frontend/components/ExtensionBar/ExtensionContextMenu.tsx -------------------------------------------------------------------------------- /frontend/components/ExtensionBar/ExtensionsBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BossSloth/Extendium/HEAD/frontend/components/ExtensionBar/ExtensionsBar.tsx -------------------------------------------------------------------------------- /frontend/components/ExtensionPopup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BossSloth/Extendium/HEAD/frontend/components/ExtensionPopup.tsx -------------------------------------------------------------------------------- /frontend/components/ExtensionSettingsPopup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BossSloth/Extendium/HEAD/frontend/components/ExtensionSettingsPopup.tsx -------------------------------------------------------------------------------- /frontend/components/Separator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BossSloth/Extendium/HEAD/frontend/components/Separator.tsx -------------------------------------------------------------------------------- /frontend/components/SettingsModal.tsx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/components/SteamComponents.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BossSloth/Extendium/HEAD/frontend/components/SteamComponents.tsx -------------------------------------------------------------------------------- /frontend/components/Styles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BossSloth/Extendium/HEAD/frontend/components/Styles.tsx -------------------------------------------------------------------------------- /frontend/components/ToolbarExtensionManager/ManagerExtensionItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BossSloth/Extendium/HEAD/frontend/components/ToolbarExtensionManager/ManagerExtensionItem.tsx -------------------------------------------------------------------------------- /frontend/components/ToolbarExtensionManager/ToolbarManagerButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BossSloth/Extendium/HEAD/frontend/components/ToolbarExtensionManager/ToolbarManagerButton.tsx -------------------------------------------------------------------------------- /frontend/components/ToolbarExtensionManager/ToolbarManagerContextMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BossSloth/Extendium/HEAD/frontend/components/ToolbarExtensionManager/ToolbarManagerContextMenu.tsx -------------------------------------------------------------------------------- /frontend/components/stores/extensionsBarStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BossSloth/Extendium/HEAD/frontend/components/stores/extensionsBarStore.ts -------------------------------------------------------------------------------- /frontend/components/stores/popupsStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BossSloth/Extendium/HEAD/frontend/components/stores/popupsStore.ts -------------------------------------------------------------------------------- /frontend/extensions-manager/Downloader/download-manager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BossSloth/Extendium/HEAD/frontend/extensions-manager/Downloader/download-manager.ts -------------------------------------------------------------------------------- /frontend/extensions-manager/ExtensionDetailInfo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BossSloth/Extendium/HEAD/frontend/extensions-manager/ExtensionDetailInfo.tsx -------------------------------------------------------------------------------- /frontend/extensions-manager/ExtensionManagerComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BossSloth/Extendium/HEAD/frontend/extensions-manager/ExtensionManagerComponent.tsx -------------------------------------------------------------------------------- /frontend/extensions-manager/ExtensionManagerPopup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BossSloth/Extendium/HEAD/frontend/extensions-manager/ExtensionManagerPopup.tsx -------------------------------------------------------------------------------- /frontend/extensions-manager/ExtensionManagerRoot.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BossSloth/Extendium/HEAD/frontend/extensions-manager/ExtensionManagerRoot.tsx -------------------------------------------------------------------------------- /frontend/extensions-manager/InstallExtensionModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BossSloth/Extendium/HEAD/frontend/extensions-manager/InstallExtensionModal.tsx -------------------------------------------------------------------------------- /frontend/extensions-manager/RemoveModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BossSloth/Extendium/HEAD/frontend/extensions-manager/RemoveModal.tsx -------------------------------------------------------------------------------- /frontend/extensions-manager/RestartModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BossSloth/Extendium/HEAD/frontend/extensions-manager/RestartModal.tsx -------------------------------------------------------------------------------- /frontend/extensions-manager/Settings/DynamicListManager.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BossSloth/Extendium/HEAD/frontend/extensions-manager/Settings/DynamicListManager.tsx -------------------------------------------------------------------------------- /frontend/extensions-manager/Settings/ExtendiumSettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BossSloth/Extendium/HEAD/frontend/extensions-manager/Settings/ExtendiumSettings.tsx -------------------------------------------------------------------------------- /frontend/extensions-manager/Settings/ExternalLinksMananger.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BossSloth/Extendium/HEAD/frontend/extensions-manager/Settings/ExternalLinksMananger.tsx -------------------------------------------------------------------------------- /frontend/extensions-manager/Settings/settingsStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BossSloth/Extendium/HEAD/frontend/extensions-manager/Settings/settingsStore.ts -------------------------------------------------------------------------------- /frontend/extensions-manager/Storage/StorageManager.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BossSloth/Extendium/HEAD/frontend/extensions-manager/Storage/StorageManager.tsx -------------------------------------------------------------------------------- /frontend/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BossSloth/Extendium/HEAD/frontend/index.tsx -------------------------------------------------------------------------------- /frontend/onPopupCreation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BossSloth/Extendium/HEAD/frontend/onPopupCreation.tsx -------------------------------------------------------------------------------- /frontend/shared.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BossSloth/Extendium/HEAD/frontend/shared.ts -------------------------------------------------------------------------------- /frontend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BossSloth/Extendium/HEAD/frontend/tsconfig.json -------------------------------------------------------------------------------- /frontend/updates/updateStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BossSloth/Extendium/HEAD/frontend/updates/updateStore.ts -------------------------------------------------------------------------------- /frontend/updates/updater.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BossSloth/Extendium/HEAD/frontend/updates/updater.ts -------------------------------------------------------------------------------- /frontend/urlBarPatch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BossSloth/Extendium/HEAD/frontend/urlBarPatch.tsx -------------------------------------------------------------------------------- /frontend/urlSchemeHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BossSloth/Extendium/HEAD/frontend/urlSchemeHandler.ts -------------------------------------------------------------------------------- /frontend/webkit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BossSloth/Extendium/HEAD/frontend/webkit.ts -------------------------------------------------------------------------------- /frontend/websocket/MessageHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BossSloth/Extendium/HEAD/frontend/websocket/MessageHandler.ts -------------------------------------------------------------------------------- /frontend/websocket/WebSocketServer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BossSloth/Extendium/HEAD/frontend/websocket/WebSocketServer.ts -------------------------------------------------------------------------------- /frontend/windowManagement.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BossSloth/Extendium/HEAD/frontend/windowManagement.tsx -------------------------------------------------------------------------------- /helpers/build_zip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BossSloth/Extendium/HEAD/helpers/build_zip.py -------------------------------------------------------------------------------- /helpers/generate-metadata.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BossSloth/Extendium/HEAD/helpers/generate-metadata.sh -------------------------------------------------------------------------------- /helpers/publish.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BossSloth/Extendium/HEAD/helpers/publish.sh -------------------------------------------------------------------------------- /helpers/update-version.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BossSloth/Extendium/HEAD/helpers/update-version.ts -------------------------------------------------------------------------------- /images/extension-icon-fluenty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BossSloth/Extendium/HEAD/images/extension-icon-fluenty.png -------------------------------------------------------------------------------- /images/extension-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BossSloth/Extendium/HEAD/images/extension-icon.png -------------------------------------------------------------------------------- /images/install-extension.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BossSloth/Extendium/HEAD/images/install-extension.gif -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BossSloth/Extendium/HEAD/package.json -------------------------------------------------------------------------------- /patches/@steambrew%2Fclient@5.8.0.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BossSloth/Extendium/HEAD/patches/@steambrew%2Fclient@5.8.0.patch -------------------------------------------------------------------------------- /plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BossSloth/Extendium/HEAD/plugin.json -------------------------------------------------------------------------------- /public/extendium.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BossSloth/Extendium/HEAD/public/extendium.scss -------------------------------------------------------------------------------- /release.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BossSloth/Extendium/HEAD/release.config.mjs -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | requests 2 | -------------------------------------------------------------------------------- /shared/extension/Action.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BossSloth/Extendium/HEAD/shared/extension/Action.ts -------------------------------------------------------------------------------- /shared/extension/ChromeEvent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BossSloth/Extendium/HEAD/shared/extension/ChromeEvent.ts -------------------------------------------------------------------------------- /shared/extension/Contexts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BossSloth/Extendium/HEAD/shared/extension/Contexts.ts -------------------------------------------------------------------------------- /shared/extension/EnumerableMethods.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BossSloth/Extendium/HEAD/shared/extension/EnumerableMethods.ts -------------------------------------------------------------------------------- /shared/extension/Enums.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BossSloth/Extendium/HEAD/shared/extension/Enums.ts -------------------------------------------------------------------------------- /shared/extension/Extension.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BossSloth/Extendium/HEAD/shared/extension/Extension.ts -------------------------------------------------------------------------------- /shared/extension/Locale.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BossSloth/Extendium/HEAD/shared/extension/Locale.ts -------------------------------------------------------------------------------- /shared/extension/Logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BossSloth/Extendium/HEAD/shared/extension/Logger.ts -------------------------------------------------------------------------------- /shared/extension/Messaging.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BossSloth/Extendium/HEAD/shared/extension/Messaging.ts -------------------------------------------------------------------------------- /shared/extension/Metadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BossSloth/Extendium/HEAD/shared/extension/Metadata.ts -------------------------------------------------------------------------------- /shared/extension/Options.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BossSloth/Extendium/HEAD/shared/extension/Options.ts -------------------------------------------------------------------------------- /shared/extension/Storage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BossSloth/Extendium/HEAD/shared/extension/Storage.ts -------------------------------------------------------------------------------- /shared/extension/helpers/safeProxy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BossSloth/Extendium/HEAD/shared/extension/helpers/safeProxy.ts -------------------------------------------------------------------------------- /shared/extension/requests/crossRequestKeys.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BossSloth/Extendium/HEAD/shared/extension/requests/crossRequestKeys.ts -------------------------------------------------------------------------------- /shared/extension/shared.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BossSloth/Extendium/HEAD/shared/extension/shared.ts -------------------------------------------------------------------------------- /shared/extension/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BossSloth/Extendium/HEAD/shared/extension/utils.ts -------------------------------------------------------------------------------- /shared/extension/websocket/MessageTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BossSloth/Extendium/HEAD/shared/extension/websocket/MessageTypes.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BossSloth/Extendium/HEAD/tsconfig.json -------------------------------------------------------------------------------- /webkit/ExtensionWrapper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BossSloth/Extendium/HEAD/webkit/ExtensionWrapper.ts -------------------------------------------------------------------------------- /webkit/TabInject.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BossSloth/Extendium/HEAD/webkit/TabInject.ts -------------------------------------------------------------------------------- /webkit/chromeInjectionContent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BossSloth/Extendium/HEAD/webkit/chromeInjectionContent.js -------------------------------------------------------------------------------- /webkit/createChrome.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BossSloth/Extendium/HEAD/webkit/createChrome.ts -------------------------------------------------------------------------------- /webkit/createContentScripts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BossSloth/Extendium/HEAD/webkit/createContentScripts.ts -------------------------------------------------------------------------------- /webkit/fake-header/fake-header-strings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BossSloth/Extendium/HEAD/webkit/fake-header/fake-header-strings.ts -------------------------------------------------------------------------------- /webkit/fake-header/fake-header.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BossSloth/Extendium/HEAD/webkit/fake-header/fake-header.ts -------------------------------------------------------------------------------- /webkit/fake-header/legacy-header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BossSloth/Extendium/HEAD/webkit/fake-header/legacy-header.html -------------------------------------------------------------------------------- /webkit/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BossSloth/Extendium/HEAD/webkit/index.tsx -------------------------------------------------------------------------------- /webkit/linkModifier.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BossSloth/Extendium/HEAD/webkit/linkModifier.ts -------------------------------------------------------------------------------- /webkit/shared.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BossSloth/Extendium/HEAD/webkit/shared.ts -------------------------------------------------------------------------------- /webkit/steam-requests/handle-steam-requests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BossSloth/Extendium/HEAD/webkit/steam-requests/handle-steam-requests.ts -------------------------------------------------------------------------------- /webkit/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BossSloth/Extendium/HEAD/webkit/tsconfig.json -------------------------------------------------------------------------------- /webkit/webkit-extension/WebkitStorage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BossSloth/Extendium/HEAD/webkit/webkit-extension/WebkitStorage.ts -------------------------------------------------------------------------------- /webkit/websocket/WebSocketClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BossSloth/Extendium/HEAD/webkit/websocket/WebSocketClient.ts --------------------------------------------------------------------------------