├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── feature_request.md │ └── task.md ├── banner.png └── workflows │ ├── build.yml │ └── run-build.yml ├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md ├── badges ├── chrome.png ├── edge.png └── firefox.png ├── changelog.yml ├── package.json ├── scripts ├── build.mjs ├── locales.mjs ├── make-release.mjs ├── patches │ └── inquire.js ├── protobufs.mjs └── tools │ ├── builder.mjs │ ├── locale │ ├── compiler.mjs │ └── downloader.mjs │ ├── manifest.mjs │ ├── manifestBuilder.mjs │ └── manifestPreprocess.mjs ├── src ├── css │ └── augmentedsteam.css ├── html │ ├── offscreen_domparser.html │ └── options.html ├── img │ ├── alternative_linux_icon.png │ ├── badges │ │ ├── coins.png │ │ ├── es_code.png │ │ ├── es_extralife2014.png │ │ ├── es_extralife2015.png │ │ ├── es_extralife2016.png │ │ ├── es_support_bronze.png │ │ ├── es_support_gold.png │ │ ├── es_support_silver.png │ │ └── world.png │ ├── bartervg.png │ ├── clippy.svg │ ├── dlcicons │ │ ├── dlc_addon.png │ │ ├── dlc_cosmetic.png │ │ ├── dlc_expansion.png │ │ ├── dlc_gameguide.png │ │ ├── dlc_gameplaymode.png │ │ ├── dlc_items.png │ │ ├── dlc_maps.png │ │ ├── dlc_multipack.png │ │ ├── dlc_multiplayeronly.png │ │ ├── dlc_newcharacter.png │ │ ├── dlc_paytounlock.png │ │ ├── dlc_singleplayer.png │ │ ├── dlc_soundtrack.png │ │ └── smallblacksquare.jpg │ ├── flags │ │ ├── flags.png │ │ └── world.png │ ├── fullscreen-icons.gif │ ├── ico │ │ ├── backpacktf.png │ │ ├── bartervg.png │ │ ├── srcn.png │ │ ├── steamcardexchange.png │ │ ├── steamdb.png │ │ ├── steamgifts.png │ │ └── steamtrades.png │ ├── ico_external_link.gif │ ├── icon-completionistme.png │ ├── icon-protondb.png │ ├── icon-twitch.png │ ├── icon-youtube.png │ ├── itad.png │ ├── itad_small.png │ ├── itad_small_black.png │ ├── logo │ │ ├── as128.png │ │ ├── as32.png │ │ ├── as48.png │ │ └── logo.svg │ ├── opencritic.png │ ├── overlay │ │ ├── early_access_banner_brazilian.png │ │ ├── early_access_banner_english.png │ │ ├── early_access_banner_french.png │ │ ├── early_access_banner_italian.png │ │ ├── early_access_banner_japanese.png │ │ ├── early_access_banner_koreana.png │ │ ├── early_access_banner_latam.png │ │ ├── early_access_banner_polish.png │ │ ├── early_access_banner_portuguese.png │ │ ├── early_access_banner_russian.png │ │ ├── early_access_banner_schinese.png │ │ ├── early_access_banner_spanish.png │ │ ├── early_access_banner_tchinese.png │ │ └── early_access_banner_thai.png │ ├── pcgw.png │ ├── profile_styles │ │ ├── blue │ │ │ ├── header.jpg │ │ │ ├── preview.png │ │ │ └── style.css │ │ ├── clear │ │ │ └── preview.png │ │ ├── goldenprofile │ │ │ └── preview.png │ │ ├── goldenprofile2020 │ │ │ └── preview.png │ │ ├── green │ │ │ ├── header.jpg │ │ │ ├── preview.png │ │ │ └── style.css │ │ ├── grey │ │ │ ├── header.jpg │ │ │ ├── preview.png │ │ │ └── style.css │ │ ├── holiday2014 │ │ │ └── preview.png │ │ ├── orange │ │ │ ├── header.jpg │ │ │ ├── preview.png │ │ │ └── style.css │ │ ├── pink │ │ │ ├── header.jpg │ │ │ ├── preview.png │ │ │ └── style.css │ │ ├── purple │ │ │ ├── header.jpg │ │ │ ├── preview.png │ │ │ └── style.css │ │ ├── red │ │ │ ├── header.jpg │ │ │ ├── preview.png │ │ │ └── style.css │ │ ├── teal │ │ │ ├── header.jpg │ │ │ ├── preview.png │ │ │ └── style.css │ │ ├── winter2019 │ │ │ └── preview.png │ │ └── yellow │ │ │ ├── header.jpg │ │ │ ├── preview.png │ │ │ └── style.css │ ├── questionmark.png │ ├── remove.png │ ├── save.svg │ ├── screenshot_open.png │ ├── steam │ │ └── review_graph_expander.png │ ├── steamcardexchange.png │ ├── steamdb_store.png │ ├── steamdb_store_black.png │ └── wsgf │ │ ├── 4k-gold.png │ │ ├── 4k-incomplete.png │ │ ├── 4k-limited.png │ │ ├── 4k-silver.png │ │ ├── 4k-unsupported.png │ │ ├── mm-gold.png │ │ ├── mm-incomplete.png │ │ ├── mm-limited.png │ │ ├── mm-silver.png │ │ ├── mm-unsupported.png │ │ ├── uw-gold.png │ │ ├── uw-incomplete.png │ │ ├── uw-limited.png │ │ ├── uw-silver.png │ │ ├── uw-unsupported.png │ │ ├── ws-gold.png │ │ ├── ws-incomplete.png │ │ ├── ws-limited.png │ │ ├── ws-silver.png │ │ └── ws-unsupported.png ├── js │ ├── Background │ │ ├── Db │ │ │ ├── IndexedDB.ts │ │ │ ├── Migration.ts │ │ │ └── Schemas │ │ │ │ ├── ADB5.ts │ │ │ │ ├── ADB6.ts │ │ │ │ └── ADB7.ts │ │ ├── EAction.ts │ │ ├── MessageHandlerInterface.ts │ │ ├── Modules │ │ │ ├── Api.ts │ │ │ ├── AugmentedSteam │ │ │ │ ├── AugmentedSteamApi.ts │ │ │ │ └── _types.ts │ │ │ ├── Cache │ │ │ │ ├── CacheApi.ts │ │ │ │ └── SessionCacheApi.ts │ │ │ ├── Community │ │ │ │ ├── SteamCommunityApi.ts │ │ │ │ └── _types.ts │ │ │ ├── ContextMenu │ │ │ │ └── ContextMenu.ts │ │ │ ├── Dom │ │ │ │ ├── DomParserFactory.ts │ │ │ │ ├── DomParserInterface.ts │ │ │ │ ├── NativeDomParser.ts │ │ │ │ └── OffscreenDomParser.ts │ │ │ ├── Inventory │ │ │ │ ├── InventoryApi.ts │ │ │ │ └── _types.ts │ │ │ ├── IsThereAnyDeal │ │ │ │ ├── AccessToken.ts │ │ │ │ ├── Authorization.ts │ │ │ │ ├── ITADApi.ts │ │ │ │ └── _types.ts │ │ │ ├── Store │ │ │ │ ├── SteamStoreApi.ts │ │ │ │ └── _types.ts │ │ │ ├── UserNotes │ │ │ │ └── UserNotesApi.ts │ │ │ ├── VaporLens │ │ │ │ ├── VaporLensApi.ts │ │ │ │ └── _types.ts │ │ │ └── WebRequest │ │ │ │ └── WebRequestHandler.ts │ │ ├── background.ts │ │ └── offscreen_domparser.ts │ ├── Content │ │ ├── Features │ │ │ ├── Common │ │ │ │ ├── CBase.ts │ │ │ │ ├── CommonExtraLinks.svelte │ │ │ │ ├── FDefaultCommunityTab.ts │ │ │ │ ├── FDisableLinkFilter.ts │ │ │ │ ├── FEarlyAccess.ts │ │ │ │ ├── FHighlightsTags.ts │ │ │ │ ├── FKeepSSACheckboxState.ts │ │ │ │ ├── FMediaExpander.ts │ │ │ │ ├── FSkipAgecheck.ts │ │ │ │ └── LoadingElement.svelte │ │ │ ├── Community │ │ │ │ ├── App │ │ │ │ │ ├── CApp.ts │ │ │ │ │ ├── FCommunityAppPageLinks.ts │ │ │ │ │ ├── FCommunityAppPageWishlist.svelte │ │ │ │ │ ├── FCommunityAppPageWishlist.ts │ │ │ │ │ └── PApp.ts │ │ │ │ ├── Badges │ │ │ │ │ ├── CBadges.ts │ │ │ │ │ ├── Components │ │ │ │ │ │ └── DropStats.svelte │ │ │ │ │ ├── FBadgeCalculations.ts │ │ │ │ │ ├── FBadgeSortAndFilter.ts │ │ │ │ │ └── PBadges.ts │ │ │ │ ├── BoosterCreator │ │ │ │ │ ├── CBoosterCreator.ts │ │ │ │ │ ├── FShowGemsCost.ts │ │ │ │ │ └── PBoosterCreator.ts │ │ │ │ ├── CCommunityBase.ts │ │ │ │ ├── EditGuide │ │ │ │ │ ├── CEditGuide.ts │ │ │ │ │ ├── Components │ │ │ │ │ │ └── AddTagForm.svelte │ │ │ │ │ ├── FCustomTags.svelte │ │ │ │ │ ├── FCustomTags.ts │ │ │ │ │ └── PEditGuide.ts │ │ │ │ ├── FCardExchangeLinks.ts │ │ │ │ ├── FConfirmDeleteComment.ts │ │ │ │ ├── FFavoriteEmoticons.svelte │ │ │ │ ├── FFavoriteEmoticons.ts │ │ │ │ ├── FHideSpamComments.ts │ │ │ │ ├── FPriceHistoryZoomYear.ts │ │ │ │ ├── FriendsAndGroups │ │ │ │ │ ├── CFriendsAndGroups.ts │ │ │ │ │ ├── FFriendsAppendNickname.css │ │ │ │ │ ├── FFriendsAppendNickname.ts │ │ │ │ │ ├── FFriendsSort.ts │ │ │ │ │ ├── FGroupsManageButton.ts │ │ │ │ │ ├── FGroupsSort.ts │ │ │ │ │ ├── FInviteFriendsToGroup.ts │ │ │ │ │ └── PFriendsAndGroups.ts │ │ │ │ ├── FriendsThatPlay │ │ │ │ │ ├── CFriendsThatPlay.ts │ │ │ │ │ ├── FFriendsCount.ts │ │ │ │ │ ├── FFriendsPlaytimeSort.ts │ │ │ │ │ └── PFriendsThatPlay.ts │ │ │ │ ├── GameCard │ │ │ │ │ ├── CGameCard.ts │ │ │ │ │ ├── Components │ │ │ │ │ │ ├── BadgeCompletion.svelte │ │ │ │ │ │ └── CardLowestPrice.svelte │ │ │ │ │ ├── FCardExtraLinks.ts │ │ │ │ │ ├── FCardMarketLinks.ts │ │ │ │ │ └── PGameCard.ts │ │ │ │ ├── Games │ │ │ │ │ ├── CGames.ts │ │ │ │ │ ├── FGamesStats.svelte │ │ │ │ │ ├── FGamesStats.ts │ │ │ │ │ └── PGames.ts │ │ │ │ ├── GroupHome │ │ │ │ │ ├── CGroupHome.ts │ │ │ │ │ ├── FFriendsInviteButton.svelte │ │ │ │ │ ├── FFriendsInviteButton.ts │ │ │ │ │ ├── FGroupLinks.svelte │ │ │ │ │ ├── FGroupLinks.ts │ │ │ │ │ └── PGroupHome.ts │ │ │ │ ├── Guides │ │ │ │ │ ├── CGuides.ts │ │ │ │ │ ├── FRemoveGuidesLangFilter.ts │ │ │ │ │ └── PGuides.ts │ │ │ │ ├── Inventory │ │ │ │ │ ├── CInventory.ts │ │ │ │ │ ├── Components │ │ │ │ │ │ ├── FEquipProfileItems.svelte │ │ │ │ │ │ ├── FOneClickGemsOption.svelte │ │ │ │ │ │ ├── FQuickSellOptions.svelte │ │ │ │ │ │ └── MarketPrices.ts │ │ │ │ │ ├── FInventoryFeatures.svelte │ │ │ │ │ ├── FInventoryFeatures.ts │ │ │ │ │ ├── FInventoryGoTo.ts │ │ │ │ │ └── PInventory.ts │ │ │ │ ├── MarketHome │ │ │ │ │ ├── CMarketHome.ts │ │ │ │ │ ├── Components │ │ │ │ │ │ └── MarketStats.svelte │ │ │ │ │ ├── FHideActiveListings.ts │ │ │ │ │ ├── FMarketLowestPrice.ts │ │ │ │ │ ├── FMarketSort.ts │ │ │ │ │ ├── FMarketStats.ts │ │ │ │ │ ├── FPopularRefreshToggle.ts │ │ │ │ │ └── PMarketHome.ts │ │ │ │ ├── MarketListing │ │ │ │ │ ├── CMarketListing.ts │ │ │ │ │ ├── FBackgroundPreviewLink.svelte │ │ │ │ │ ├── FBackgroundPreviewLink.ts │ │ │ │ │ ├── FBadgePageLink.ts │ │ │ │ │ ├── FSoldAmountLastDay.ts │ │ │ │ │ └── PMarketListing.ts │ │ │ │ ├── MarketSearch │ │ │ │ │ ├── CMarketSearch.ts │ │ │ │ │ ├── FHighlightMarketItems.ts │ │ │ │ │ └── PMarketSearch.ts │ │ │ │ ├── MyWorkshop │ │ │ │ │ ├── CMyWorkshop.ts │ │ │ │ │ ├── FWorkshopFileSizes.ts │ │ │ │ │ └── PMyWorkshop.ts │ │ │ │ ├── PDefaultCommunity.ts │ │ │ │ ├── ProfileActivity │ │ │ │ │ ├── CProfileActivity.ts │ │ │ │ │ ├── FAchievementLink.ts │ │ │ │ │ ├── FHighlightFriendsActivity.ts │ │ │ │ │ ├── FPatchBlotterFunc.ts │ │ │ │ │ ├── FReplaceCommunityHubLinks.ts │ │ │ │ │ ├── FToggleComments.ts │ │ │ │ │ └── PProfileActivity.ts │ │ │ │ ├── ProfileEdit │ │ │ │ │ ├── CProfileEdit.ts │ │ │ │ │ ├── FBackgroundSelection.ts │ │ │ │ │ ├── FStyleSelection.ts │ │ │ │ │ └── PProfileEdit.ts │ │ │ │ ├── ProfileHome │ │ │ │ │ ├── CProfileHome.ts │ │ │ │ │ ├── FChatDropdownOptions.svelte │ │ │ │ │ ├── FChatDropdownOptions.ts │ │ │ │ │ ├── FCommunityProfileLinks.svelte │ │ │ │ │ ├── FCommunityProfileLinks.ts │ │ │ │ │ ├── FCustomBackground.ts │ │ │ │ │ ├── FCustomStyle.ts │ │ │ │ │ ├── FInGameStoreLink.ts │ │ │ │ │ ├── FPinnedBackground.ts │ │ │ │ │ ├── FProfileDropdownOptions.ts │ │ │ │ │ ├── FProfileStoreLinks.ts │ │ │ │ │ ├── FSupporterBadges.svelte │ │ │ │ │ ├── FSupporterBadges.ts │ │ │ │ │ ├── FTwitchShowcase.ts │ │ │ │ │ ├── FViewSteamId.svelte │ │ │ │ │ ├── FViewSteamId.ts │ │ │ │ │ ├── FWishlistProfileLink.svelte │ │ │ │ │ ├── FWishlistProfileLink.ts │ │ │ │ │ └── PProfileHome.ts │ │ │ │ ├── ProfileStats │ │ │ │ │ ├── CProfileStats.ts │ │ │ │ │ ├── FAchievementSort.ts │ │ │ │ │ ├── FShowHiddenAchievements.ts │ │ │ │ │ └── PProfileStats.ts │ │ │ │ ├── Recommended │ │ │ │ │ ├── CRecommended.ts │ │ │ │ │ ├── FReviewSort.ts │ │ │ │ │ └── PRecommended.ts │ │ │ │ ├── SharedFiles │ │ │ │ │ ├── CSharedFiles.ts │ │ │ │ │ └── PSharedFiles.ts │ │ │ │ ├── TradeOffer │ │ │ │ │ ├── CTradeOffer.ts │ │ │ │ │ ├── FCountTradeItems.css │ │ │ │ │ ├── FCountTradeItems.ts │ │ │ │ │ ├── FMyTradeOffersLink.ts │ │ │ │ │ └── PTradeOffer.ts │ │ │ │ ├── Workshop │ │ │ │ │ ├── CWorkshop.ts │ │ │ │ │ ├── CollectionSort │ │ │ │ │ │ ├── SortButton.svelte │ │ │ │ │ │ └── _types.ts │ │ │ │ │ ├── FBrowseWorkshops.ts │ │ │ │ │ ├── FCollectionSort.svelte │ │ │ │ │ ├── FCollectionSort.ts │ │ │ │ │ └── PWorkshop.ts │ │ │ │ └── WorkshopBrowse │ │ │ │ │ ├── CWorkshopBrowse.ts │ │ │ │ │ ├── FWorkshopSubscriberButtons.ts │ │ │ │ │ ├── PWorkshopBrowse.ts │ │ │ │ │ └── Workshop.ts │ │ │ ├── CommunityPage.ts │ │ │ ├── LegacyPage.ts │ │ │ ├── Page.ts │ │ │ ├── ReactPage.ts │ │ │ ├── Store │ │ │ │ ├── Account │ │ │ │ │ ├── CAccount.ts │ │ │ │ │ ├── FUsefulLinks.ts │ │ │ │ │ └── PAccount.ts │ │ │ │ ├── AgeCheck │ │ │ │ │ ├── CAgecheck.ts │ │ │ │ │ └── PAgecheck.ts │ │ │ │ ├── App │ │ │ │ │ ├── CApp.ts │ │ │ │ │ ├── FAchievementBar.svelte │ │ │ │ │ ├── FAchievementBar.ts │ │ │ │ │ ├── FAppTitle.ts │ │ │ │ │ ├── FBadgeProgress.svelte │ │ │ │ │ ├── FBadgeProgress.ts │ │ │ │ │ ├── FDLCCheckboxes.css │ │ │ │ │ ├── FDLCCheckboxes.ts │ │ │ │ │ ├── FDLCInfo.svelte │ │ │ │ │ ├── FDLCInfo.ts │ │ │ │ │ ├── FDemoAbovePurchase.ts │ │ │ │ │ ├── FFamilySharingNotice.svelte │ │ │ │ │ ├── FFamilySharingNotice.ts │ │ │ │ │ ├── FFullscreenScreenshotView.ts │ │ │ │ │ ├── FHideReportedTags.ts │ │ │ │ │ ├── FHighlightTitle.ts │ │ │ │ │ ├── FHorizontalScrolling.ts │ │ │ │ │ ├── FHowLongToBeat.svelte │ │ │ │ │ ├── FHowLongToBeat.ts │ │ │ │ │ ├── FMetacriticUserScore.ts │ │ │ │ │ ├── FNewQueue.svelte │ │ │ │ │ ├── FNewQueue.ts │ │ │ │ │ ├── FOpenCritic.ts │ │ │ │ │ ├── FOwnedActionsButtons.ts │ │ │ │ │ ├── FOwnedElsewhere.svelte │ │ │ │ │ ├── FOwnedElsewhere.ts │ │ │ │ │ ├── FPackageInfoButton.ts │ │ │ │ │ ├── FPatchHighlightPlayer.ts │ │ │ │ │ ├── FPlayers.svelte │ │ │ │ │ ├── FPlayers.ts │ │ │ │ │ ├── FPreventVideoPause.ts │ │ │ │ │ ├── FPurchaseDate.ts │ │ │ │ │ ├── FRemoveBroadcasts.ts │ │ │ │ │ ├── FRemoveDupeScreenshots.ts │ │ │ │ │ ├── FReplaceDevPubLinks.ts │ │ │ │ │ ├── FReviewToggleButton.svelte │ │ │ │ │ ├── FReviewToggleButton.ts │ │ │ │ │ ├── FSaveReviewFilters.ts │ │ │ │ │ ├── FSteamPeek.svelte │ │ │ │ │ ├── FSteamPeek.ts │ │ │ │ │ ├── FSupportInfo.ts │ │ │ │ │ ├── FUserNotes.svelte │ │ │ │ │ ├── FUserNotes.ts │ │ │ │ │ ├── FVaporLensInsights.svelte │ │ │ │ │ ├── FVaporLensInsights.ts │ │ │ │ │ ├── FWaitlistDropdown.ts │ │ │ │ │ ├── FWidescreenCertification.ts │ │ │ │ │ ├── PApp.ts │ │ │ │ │ └── Vaporlens │ │ │ │ │ │ ├── VaporlensDetails.svelte │ │ │ │ │ │ └── VaporlensExplanation.svelte │ │ │ │ ├── Bundle │ │ │ │ │ ├── CBundle.ts │ │ │ │ │ └── PBundle.ts │ │ │ │ ├── Cart │ │ │ │ │ ├── CCart.ts │ │ │ │ │ ├── FCartHistoryLink.ts │ │ │ │ │ └── PCart.ts │ │ │ │ ├── Common │ │ │ │ │ ├── CStoreBase.ts │ │ │ │ │ ├── Customizer │ │ │ │ │ │ ├── Customizer.svelte │ │ │ │ │ │ └── CustomizerSetup.ts │ │ │ │ │ ├── ExtraLinks │ │ │ │ │ │ ├── AppLinks.svelte │ │ │ │ │ │ └── ExtraLink.svelte │ │ │ │ │ ├── FAlternativeLinuxIcon.ts │ │ │ │ │ ├── FCustomizer.ts │ │ │ │ │ ├── FDRMWarnings.svelte │ │ │ │ │ ├── FDRMWarnings.ts │ │ │ │ │ ├── FExtraLinksApp.ts │ │ │ │ │ ├── FExtraLinksAppError.ts │ │ │ │ │ ├── FExtraLinksCommon.ts │ │ │ │ │ ├── FHorizontalScrolling.ts │ │ │ │ │ ├── FITADPrices.ts │ │ │ │ │ ├── FRegionalPricing.svelte │ │ │ │ │ ├── FRegionalPricing.ts │ │ │ │ │ ├── FSkipGotSteamDialog.ts │ │ │ │ │ └── UserNotes │ │ │ │ │ │ ├── NotesForm.svelte │ │ │ │ │ │ └── UserNotes.ts │ │ │ │ ├── Funds │ │ │ │ │ ├── CFunds.ts │ │ │ │ │ ├── FCustomGiftcardAndWallet.ts │ │ │ │ │ └── PFunds.ts │ │ │ │ ├── Licenses │ │ │ │ │ ├── CLicenses.ts │ │ │ │ │ ├── FLicensesSummary.svelte │ │ │ │ │ ├── FLicensesSummary.ts │ │ │ │ │ └── PLicenses.ts │ │ │ │ ├── PDefaultStore.ts │ │ │ │ ├── PointsShop │ │ │ │ │ ├── CPointsShop.ts │ │ │ │ │ ├── FBackgroundPreviewLink.ts │ │ │ │ │ └── PPointsShop.ts │ │ │ │ ├── RegisterKey │ │ │ │ │ ├── CRegisterKey.ts │ │ │ │ │ ├── Components │ │ │ │ │ │ ├── MultiProductKeysForm.svelte │ │ │ │ │ │ └── RegisterMultipleButton.svelte │ │ │ │ │ ├── FMultiProductKeys.ts │ │ │ │ │ └── PRegisterKey.ts │ │ │ │ ├── Search │ │ │ │ │ ├── CSearch.ts │ │ │ │ │ ├── FIFeelLucky.ts │ │ │ │ │ ├── FSearchFilters.ts │ │ │ │ │ ├── Filters │ │ │ │ │ │ ├── CartSearchFilter.ts │ │ │ │ │ │ ├── DiscountPercentSearchFilter.ts │ │ │ │ │ │ ├── EarlyAccessSearchFilter.ts │ │ │ │ │ │ ├── MixedSearchFilter.ts │ │ │ │ │ │ ├── NegativeSearchFilter.ts │ │ │ │ │ │ ├── ReviewsCountSearchFilter.ts │ │ │ │ │ │ ├── ReviewsScoreSearchFilter.ts │ │ │ │ │ │ ├── SearchFilter.ts │ │ │ │ │ │ └── SimpleSearchFilter.ts │ │ │ │ │ └── PSearch.ts │ │ │ │ ├── Storefront │ │ │ │ │ ├── CStoreFront.ts │ │ │ │ │ ├── FHomePageTab.ts │ │ │ │ │ └── PStoreFront.ts │ │ │ │ ├── Sub │ │ │ │ │ ├── CSub.ts │ │ │ │ │ ├── FSavingsCheck.ts │ │ │ │ │ └── PSub.ts │ │ │ │ └── Wishlist │ │ │ │ │ ├── CWishlist.ts │ │ │ │ │ ├── Components │ │ │ │ │ ├── ExportWishlistForm.svelte │ │ │ │ │ ├── RankInput.svelte │ │ │ │ │ ├── WishlistButton.svelte │ │ │ │ │ ├── WishlistMenu.svelte │ │ │ │ │ ├── WishlistMenu.ts │ │ │ │ │ ├── WishlistStats.svelte │ │ │ │ │ └── WishlistUserNote.svelte │ │ │ │ │ ├── FEmptyWishlist.ts │ │ │ │ │ ├── FExportWishlist.ts │ │ │ │ │ ├── FKeepEditableRanking.ts │ │ │ │ │ ├── FWishlistHighlights.ts │ │ │ │ │ ├── FWishlistITADPrices.ts │ │ │ │ │ ├── FWishlistProfileLink.ts │ │ │ │ │ ├── FWishlistStats.ts │ │ │ │ │ ├── FWishlistUserNotes.ts │ │ │ │ │ ├── PWishlist.ts │ │ │ │ │ └── Utils │ │ │ │ │ ├── WishlistDOM.ts │ │ │ │ │ └── WishlistExporter.ts │ │ │ ├── StorePage.ts │ │ │ └── _types.ts │ │ ├── Icons │ │ │ ├── CaretDownIcon.svelte │ │ │ ├── CaretUpIcon.svelte │ │ │ ├── ClearIcon.svelte │ │ │ ├── Icon.svelte │ │ │ ├── RedeemableIcon.svelte │ │ │ ├── RedeemedIcon.svelte │ │ │ └── UserNoteIcon.svelte │ │ ├── Modules │ │ │ ├── ASEventHandler.ts │ │ │ ├── AugmentedSteam.ts │ │ │ ├── Clipboard.ts │ │ │ ├── Community │ │ │ │ ├── CommunityUtils.ts │ │ │ │ ├── ProfileLink.svelte │ │ │ │ └── SpamComments.ts │ │ │ ├── Context │ │ │ │ ├── Context.ts │ │ │ │ ├── ContextType.ts │ │ │ │ └── Feature.ts │ │ │ ├── Currency │ │ │ │ ├── CurrencyManager.ts │ │ │ │ └── Price.ts │ │ │ ├── DOMHelper.ts │ │ │ ├── Data │ │ │ │ └── DynamicStore.ts │ │ │ ├── EarlyAccess │ │ │ │ ├── EarlyAccess.svelte │ │ │ │ └── EarlyAccessUtils.ts │ │ │ ├── Facades │ │ │ │ ├── AugmentedSteamApiFacade.ts │ │ │ │ ├── CacheApiFacade.ts │ │ │ │ ├── ITADApiFacade.ts │ │ │ │ ├── InventoryApiFacade.ts │ │ │ │ ├── SessionCacheApiFacade.ts │ │ │ │ ├── SteamCommunityApiFacade.ts │ │ │ │ ├── SteamFacade.ts │ │ │ │ ├── SteamStoreApiFacade.ts │ │ │ │ └── VaporLensApiFacade.ts │ │ │ ├── Highlights │ │ │ │ ├── HighlightsTagsUtils.ts │ │ │ │ ├── HighlightsTagsUtils2.ts │ │ │ │ └── Tags.svelte │ │ │ ├── ITAD.ts │ │ │ ├── Messaging │ │ │ │ ├── MessageHandler.ts │ │ │ │ └── Messenger.ts │ │ │ ├── Prices │ │ │ │ ├── BundleOverview.svelte │ │ │ │ ├── PriceOverview.svelte │ │ │ │ ├── PriceWithAlt.svelte │ │ │ │ └── Prices.ts │ │ │ ├── RequestData.ts │ │ │ ├── SteamApi.ts │ │ │ ├── UserNotes │ │ │ │ ├── Adapters │ │ │ │ │ ├── AdapterInterface.ts │ │ │ │ │ ├── IdbAdapter.ts │ │ │ │ │ └── SyncedStorageAdapter.ts │ │ │ │ ├── CapacityInfo.ts │ │ │ │ ├── Modals │ │ │ │ │ └── NoteEditModal.svelte │ │ │ │ ├── OutOfCapacityError.ts │ │ │ │ └── UserNotesAdapter.ts │ │ │ ├── WebRequest │ │ │ │ └── WebRequestListener.ts │ │ │ └── Widgets │ │ │ │ ├── AugmentedSteam │ │ │ │ ├── AugmentedSteamMenu.svelte │ │ │ │ ├── AugmentedSteamWarnings.svelte │ │ │ │ ├── BackToTop.svelte │ │ │ │ └── Components │ │ │ │ │ ├── LanguageWarning.svelte │ │ │ │ │ ├── LoginWarning.svelte │ │ │ │ │ └── Warning.svelte │ │ │ │ ├── ITADSync │ │ │ │ ├── ITADSyncMenu.svelte │ │ │ │ └── ITADSyncStatus.svelte │ │ │ │ ├── ProgressBar.svelte │ │ │ │ ├── ProgressBar.ts │ │ │ │ ├── SortBox.svelte │ │ │ │ └── SortboxChangeEvent.ts │ │ ├── Steam │ │ │ ├── ReactDOM.ts │ │ │ ├── SmallSteamButton.svelte │ │ │ └── ToggleIcon.svelte │ │ └── externalLink.ts │ ├── Core │ │ ├── AppConfig │ │ │ ├── AppConfig.ts │ │ │ └── AppConfigFactory.ts │ │ ├── Asserts │ │ │ └── AssertNever.ts │ │ ├── Background.ts │ │ ├── Currencies.ts │ │ ├── Debug.ts │ │ ├── Downloader.ts │ │ ├── Environment.ts │ │ ├── Errors │ │ │ ├── ErrorParser.ts │ │ │ └── Errors.ts │ │ ├── ExtensionResources.ts │ │ ├── GameId │ │ │ ├── AppId.ts │ │ │ ├── BundleId.ts │ │ │ ├── GameId.ts │ │ │ └── SubId.ts │ │ ├── Html │ │ │ ├── Html.ts │ │ │ └── HtmlParser.ts │ │ ├── Info.ts │ │ ├── Localization │ │ │ ├── Language.ts │ │ │ ├── LanguageFactory.ts │ │ │ └── Localization.ts │ │ ├── Modals │ │ │ ├── AlertDialog.ts │ │ │ ├── BlockingWaitDialog.ts │ │ │ ├── ConfirmDialog.ts │ │ │ ├── Contained │ │ │ │ ├── BlockingWaitModal.svelte │ │ │ │ ├── EModalAction.ts │ │ │ │ ├── Modal.svelte │ │ │ │ └── ModalButton.svelte │ │ │ └── CustomModal.ts │ │ ├── Permissions.ts │ │ ├── Protobufs │ │ │ ├── Compiled │ │ │ │ ├── proto.bundle.d.ts │ │ │ │ └── proto.bundle.js │ │ │ ├── ProtobufUtils.ts │ │ │ ├── ServiceFactory.ts │ │ │ └── protobuf.ts │ │ ├── Storage │ │ │ ├── CookieReader.ts │ │ │ ├── LocalStorage.ts │ │ │ ├── Storage.ts │ │ │ └── SyncedStorage.ts │ │ ├── Sync │ │ │ ├── ESyncStatus.ts │ │ │ └── SyncIndicator.svelte │ │ ├── Update │ │ │ ├── Changelog.svelte │ │ │ ├── ChangelogHandler.ts │ │ │ └── SettingsMigration.ts │ │ ├── User │ │ │ ├── LegacyUser.ts │ │ │ ├── ReactUser.ts │ │ │ ├── UserFactory.ts │ │ │ └── UserInterface.ts │ │ ├── Utils │ │ │ ├── StringUtils.ts │ │ │ ├── TimeUtils.ts │ │ │ └── UrlUtils.ts │ │ └── Version.ts │ ├── Icons │ │ ├── FlagIcon.svelte │ │ └── ProfileLinkIcon.svelte │ ├── Options │ │ ├── Data │ │ │ ├── Settings.ts │ │ │ └── _types.ts │ │ ├── Modules │ │ │ ├── About │ │ │ │ ├── About.svelte │ │ │ │ └── LocaleLegacyCredits.ts │ │ │ ├── Changelog │ │ │ │ └── Changelog.svelte │ │ │ ├── Footer.svelte │ │ │ ├── Header.svelte │ │ │ ├── Icons │ │ │ │ ├── AddIcon.svelte │ │ │ │ ├── DeleteIcon.svelte │ │ │ │ ├── SyncPullIcon.svelte │ │ │ │ ├── SyncPushIcon.svelte │ │ │ │ └── ToggleIcon.svelte │ │ │ ├── Options │ │ │ │ ├── AppPageOptions.svelte │ │ │ │ ├── CommunityOptions.svelte │ │ │ │ ├── Components │ │ │ │ │ ├── ColorPicker.svelte │ │ │ │ │ ├── ColorToggle.svelte │ │ │ │ │ ├── LocalizedCountryList.ts │ │ │ │ │ ├── OptionGroup.svelte │ │ │ │ │ ├── ProfileLink.svelte │ │ │ │ │ ├── Section.svelte │ │ │ │ │ ├── Select.svelte │ │ │ │ │ ├── SubOptions.svelte │ │ │ │ │ └── Toggle.svelte │ │ │ │ ├── GeneralOptions.svelte │ │ │ │ ├── ITADOptions.svelte │ │ │ │ ├── PriceOptions.svelte │ │ │ │ ├── Settings │ │ │ │ │ ├── ContextMenuOptions.svelte │ │ │ │ │ ├── CustomLinks.svelte │ │ │ │ │ ├── HideSpamCommentsSettings.svelte │ │ │ │ │ ├── ITADConnection.svelte │ │ │ │ │ ├── LanguageWarningSetting.svelte │ │ │ │ │ ├── NotesSyncControls.svelte │ │ │ │ │ ├── OverridePriceSetting.svelte │ │ │ │ │ ├── QuickSellSettings.svelte │ │ │ │ │ ├── RegionSelect.svelte │ │ │ │ │ ├── StoreListSetting.svelte │ │ │ │ │ └── SyncEvents.svelte │ │ │ │ └── StoreOptions.svelte │ │ │ └── Sidebar.svelte │ │ ├── OptionsPage.svelte │ │ ├── options.css │ │ └── options.ts │ ├── Steam │ │ └── holidayprofile.js │ ├── bootstrapDomPurify.ts │ ├── config.ts │ └── global.d.ts ├── localization │ ├── _contributors.json │ ├── bg.json │ ├── compiled │ │ ├── _strings.ts │ │ ├── bg.json │ │ ├── cs.json │ │ ├── da.json │ │ ├── de.json │ │ ├── el.json │ │ ├── en.json │ │ ├── es-419.json │ │ ├── es-ES.json │ │ ├── fi.json │ │ ├── fr.json │ │ ├── hu.json │ │ ├── id.json │ │ ├── it.json │ │ ├── ja.json │ │ ├── ko.json │ │ ├── nl.json │ │ ├── no.json │ │ ├── pl.json │ │ ├── pt-BR.json │ │ ├── pt-PT.json │ │ ├── ro.json │ │ ├── ru.json │ │ ├── sv-SE.json │ │ ├── th.json │ │ ├── tr.json │ │ ├── ua.json │ │ ├── vi.json │ │ ├── zh-CN.json │ │ └── zh-TW.json │ ├── cs.json │ ├── da.json │ ├── de.json │ ├── el.json │ ├── en.json │ ├── es-419.json │ ├── es-ES.json │ ├── fi.json │ ├── fr.json │ ├── hu.json │ ├── id.json │ ├── it.json │ ├── ja.json │ ├── ko.json │ ├── nl.json │ ├── no.json │ ├── pl.json │ ├── pt-BR.json │ ├── pt-PT.json │ ├── ro.json │ ├── ru.json │ ├── sv-SE.json │ ├── th.json │ ├── tr.json │ ├── ua.json │ ├── vi.json │ ├── zh-CN.json │ └── zh-TW.json └── scriptlets │ ├── Common │ ├── mediaExpander_app.js │ └── mediaExpander_workshop.js │ ├── Community │ ├── Badges │ │ ├── loadImages.js │ │ └── recalcLazyLoaderOffset.js │ ├── FriendsAndGroups │ │ ├── groupsManager.js │ │ ├── inviteToGroup.js │ │ ├── inviteToGroupListener.js │ │ └── subpageNav.js │ ├── Inventory │ │ ├── goToControls.js │ │ ├── marketInfo.js │ │ ├── oneClickGems.js │ │ ├── zoomYear.js │ │ └── zoomYearForSellDialog.js │ ├── ProfileActivity │ │ └── patchBlotter.js │ ├── ProfileHome │ │ └── profileDropdown.js │ ├── Workshop │ │ └── changeTab.js │ └── confirmDeleteComments.js │ ├── DynamicStoreScriptlet.js │ ├── SteamScriptlet.js │ ├── Store │ ├── App │ │ ├── addItemToCart.js │ │ ├── newQueue.js │ │ ├── patchHighlightPlayer.js │ │ ├── preventVideoPauseScriptlet.js │ │ ├── saveReviewFilters.js │ │ ├── stopBroadcast.js │ │ ├── triggerResize.js │ │ └── wishlistHandlers.js │ ├── Common │ │ ├── skipGotSteamDialog.js │ │ └── storeFrontCustomizer.js │ └── Search │ │ ├── addCollapseHandlers.js │ │ ├── executeSearchOverride.js │ │ ├── toQueryString.js │ │ └── updateUrl.js │ └── event.js └── tsconfig.json /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | patreon: IsThereAnyDeal -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/task.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/.github/ISSUE_TEMPLATE/task.md -------------------------------------------------------------------------------- /.github/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/.github/banner.png -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/run-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/.github/workflows/run-build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/README.md -------------------------------------------------------------------------------- /badges/chrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/badges/chrome.png -------------------------------------------------------------------------------- /badges/edge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/badges/edge.png -------------------------------------------------------------------------------- /badges/firefox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/badges/firefox.png -------------------------------------------------------------------------------- /changelog.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/changelog.yml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/package.json -------------------------------------------------------------------------------- /scripts/build.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/scripts/build.mjs -------------------------------------------------------------------------------- /scripts/locales.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/scripts/locales.mjs -------------------------------------------------------------------------------- /scripts/make-release.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/scripts/make-release.mjs -------------------------------------------------------------------------------- /scripts/patches/inquire.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/scripts/patches/inquire.js -------------------------------------------------------------------------------- /scripts/protobufs.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/scripts/protobufs.mjs -------------------------------------------------------------------------------- /scripts/tools/builder.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/scripts/tools/builder.mjs -------------------------------------------------------------------------------- /scripts/tools/locale/compiler.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/scripts/tools/locale/compiler.mjs -------------------------------------------------------------------------------- /scripts/tools/locale/downloader.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/scripts/tools/locale/downloader.mjs -------------------------------------------------------------------------------- /scripts/tools/manifest.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/scripts/tools/manifest.mjs -------------------------------------------------------------------------------- /scripts/tools/manifestBuilder.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/scripts/tools/manifestBuilder.mjs -------------------------------------------------------------------------------- /scripts/tools/manifestPreprocess.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/scripts/tools/manifestPreprocess.mjs -------------------------------------------------------------------------------- /src/css/augmentedsteam.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/css/augmentedsteam.css -------------------------------------------------------------------------------- /src/html/offscreen_domparser.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/html/offscreen_domparser.html -------------------------------------------------------------------------------- /src/html/options.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/html/options.html -------------------------------------------------------------------------------- /src/img/alternative_linux_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/img/alternative_linux_icon.png -------------------------------------------------------------------------------- /src/img/badges/coins.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/img/badges/coins.png -------------------------------------------------------------------------------- /src/img/badges/es_code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/img/badges/es_code.png -------------------------------------------------------------------------------- /src/img/badges/es_extralife2014.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/img/badges/es_extralife2014.png -------------------------------------------------------------------------------- /src/img/badges/es_extralife2015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/img/badges/es_extralife2015.png -------------------------------------------------------------------------------- /src/img/badges/es_extralife2016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/img/badges/es_extralife2016.png -------------------------------------------------------------------------------- /src/img/badges/es_support_bronze.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/img/badges/es_support_bronze.png -------------------------------------------------------------------------------- /src/img/badges/es_support_gold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/img/badges/es_support_gold.png -------------------------------------------------------------------------------- /src/img/badges/es_support_silver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/img/badges/es_support_silver.png -------------------------------------------------------------------------------- /src/img/badges/world.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/img/badges/world.png -------------------------------------------------------------------------------- /src/img/bartervg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/img/bartervg.png -------------------------------------------------------------------------------- /src/img/clippy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/img/clippy.svg -------------------------------------------------------------------------------- /src/img/dlcicons/dlc_addon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/img/dlcicons/dlc_addon.png -------------------------------------------------------------------------------- /src/img/dlcicons/dlc_cosmetic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/img/dlcicons/dlc_cosmetic.png -------------------------------------------------------------------------------- /src/img/dlcicons/dlc_expansion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/img/dlcicons/dlc_expansion.png -------------------------------------------------------------------------------- /src/img/dlcicons/dlc_gameguide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/img/dlcicons/dlc_gameguide.png -------------------------------------------------------------------------------- /src/img/dlcicons/dlc_gameplaymode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/img/dlcicons/dlc_gameplaymode.png -------------------------------------------------------------------------------- /src/img/dlcicons/dlc_items.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/img/dlcicons/dlc_items.png -------------------------------------------------------------------------------- /src/img/dlcicons/dlc_maps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/img/dlcicons/dlc_maps.png -------------------------------------------------------------------------------- /src/img/dlcicons/dlc_multipack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/img/dlcicons/dlc_multipack.png -------------------------------------------------------------------------------- /src/img/dlcicons/dlc_multiplayeronly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/img/dlcicons/dlc_multiplayeronly.png -------------------------------------------------------------------------------- /src/img/dlcicons/dlc_newcharacter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/img/dlcicons/dlc_newcharacter.png -------------------------------------------------------------------------------- /src/img/dlcicons/dlc_paytounlock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/img/dlcicons/dlc_paytounlock.png -------------------------------------------------------------------------------- /src/img/dlcicons/dlc_singleplayer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/img/dlcicons/dlc_singleplayer.png -------------------------------------------------------------------------------- /src/img/dlcicons/dlc_soundtrack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/img/dlcicons/dlc_soundtrack.png -------------------------------------------------------------------------------- /src/img/dlcicons/smallblacksquare.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/img/dlcicons/smallblacksquare.jpg -------------------------------------------------------------------------------- /src/img/flags/flags.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/img/flags/flags.png -------------------------------------------------------------------------------- /src/img/flags/world.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/img/flags/world.png -------------------------------------------------------------------------------- /src/img/fullscreen-icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/img/fullscreen-icons.gif -------------------------------------------------------------------------------- /src/img/ico/backpacktf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/img/ico/backpacktf.png -------------------------------------------------------------------------------- /src/img/ico/bartervg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/img/ico/bartervg.png -------------------------------------------------------------------------------- /src/img/ico/srcn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/img/ico/srcn.png -------------------------------------------------------------------------------- /src/img/ico/steamcardexchange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/img/ico/steamcardexchange.png -------------------------------------------------------------------------------- /src/img/ico/steamdb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/img/ico/steamdb.png -------------------------------------------------------------------------------- /src/img/ico/steamgifts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/img/ico/steamgifts.png -------------------------------------------------------------------------------- /src/img/ico/steamtrades.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/img/ico/steamtrades.png -------------------------------------------------------------------------------- /src/img/ico_external_link.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/img/ico_external_link.gif -------------------------------------------------------------------------------- /src/img/icon-completionistme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/img/icon-completionistme.png -------------------------------------------------------------------------------- /src/img/icon-protondb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/img/icon-protondb.png -------------------------------------------------------------------------------- /src/img/icon-twitch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/img/icon-twitch.png -------------------------------------------------------------------------------- /src/img/icon-youtube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/img/icon-youtube.png -------------------------------------------------------------------------------- /src/img/itad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/img/itad.png -------------------------------------------------------------------------------- /src/img/itad_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/img/itad_small.png -------------------------------------------------------------------------------- /src/img/itad_small_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/img/itad_small_black.png -------------------------------------------------------------------------------- /src/img/logo/as128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/img/logo/as128.png -------------------------------------------------------------------------------- /src/img/logo/as32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/img/logo/as32.png -------------------------------------------------------------------------------- /src/img/logo/as48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/img/logo/as48.png -------------------------------------------------------------------------------- /src/img/logo/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/img/logo/logo.svg -------------------------------------------------------------------------------- /src/img/opencritic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/img/opencritic.png -------------------------------------------------------------------------------- /src/img/overlay/early_access_banner_brazilian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/img/overlay/early_access_banner_brazilian.png -------------------------------------------------------------------------------- /src/img/overlay/early_access_banner_english.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/img/overlay/early_access_banner_english.png -------------------------------------------------------------------------------- /src/img/overlay/early_access_banner_french.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/img/overlay/early_access_banner_french.png -------------------------------------------------------------------------------- /src/img/overlay/early_access_banner_italian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/img/overlay/early_access_banner_italian.png -------------------------------------------------------------------------------- /src/img/overlay/early_access_banner_japanese.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/img/overlay/early_access_banner_japanese.png -------------------------------------------------------------------------------- /src/img/overlay/early_access_banner_koreana.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/img/overlay/early_access_banner_koreana.png -------------------------------------------------------------------------------- /src/img/overlay/early_access_banner_latam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/img/overlay/early_access_banner_latam.png -------------------------------------------------------------------------------- /src/img/overlay/early_access_banner_polish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/img/overlay/early_access_banner_polish.png -------------------------------------------------------------------------------- /src/img/overlay/early_access_banner_portuguese.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/img/overlay/early_access_banner_portuguese.png -------------------------------------------------------------------------------- /src/img/overlay/early_access_banner_russian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/img/overlay/early_access_banner_russian.png -------------------------------------------------------------------------------- /src/img/overlay/early_access_banner_schinese.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/img/overlay/early_access_banner_schinese.png -------------------------------------------------------------------------------- /src/img/overlay/early_access_banner_spanish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/img/overlay/early_access_banner_spanish.png -------------------------------------------------------------------------------- /src/img/overlay/early_access_banner_tchinese.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/img/overlay/early_access_banner_tchinese.png -------------------------------------------------------------------------------- /src/img/overlay/early_access_banner_thai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/img/overlay/early_access_banner_thai.png -------------------------------------------------------------------------------- /src/img/pcgw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/img/pcgw.png -------------------------------------------------------------------------------- /src/img/profile_styles/blue/header.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/img/profile_styles/blue/header.jpg -------------------------------------------------------------------------------- /src/img/profile_styles/blue/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/img/profile_styles/blue/preview.png -------------------------------------------------------------------------------- /src/img/profile_styles/blue/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/img/profile_styles/blue/style.css -------------------------------------------------------------------------------- /src/img/profile_styles/clear/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/img/profile_styles/clear/preview.png -------------------------------------------------------------------------------- /src/img/profile_styles/goldenprofile/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/img/profile_styles/goldenprofile/preview.png -------------------------------------------------------------------------------- /src/img/profile_styles/goldenprofile2020/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/img/profile_styles/goldenprofile2020/preview.png -------------------------------------------------------------------------------- /src/img/profile_styles/green/header.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/img/profile_styles/green/header.jpg -------------------------------------------------------------------------------- /src/img/profile_styles/green/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/img/profile_styles/green/preview.png -------------------------------------------------------------------------------- /src/img/profile_styles/green/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/img/profile_styles/green/style.css -------------------------------------------------------------------------------- /src/img/profile_styles/grey/header.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/img/profile_styles/grey/header.jpg -------------------------------------------------------------------------------- /src/img/profile_styles/grey/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/img/profile_styles/grey/preview.png -------------------------------------------------------------------------------- /src/img/profile_styles/grey/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/img/profile_styles/grey/style.css -------------------------------------------------------------------------------- /src/img/profile_styles/holiday2014/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/img/profile_styles/holiday2014/preview.png -------------------------------------------------------------------------------- /src/img/profile_styles/orange/header.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/img/profile_styles/orange/header.jpg -------------------------------------------------------------------------------- /src/img/profile_styles/orange/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/img/profile_styles/orange/preview.png -------------------------------------------------------------------------------- /src/img/profile_styles/orange/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/img/profile_styles/orange/style.css -------------------------------------------------------------------------------- /src/img/profile_styles/pink/header.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/img/profile_styles/pink/header.jpg -------------------------------------------------------------------------------- /src/img/profile_styles/pink/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/img/profile_styles/pink/preview.png -------------------------------------------------------------------------------- /src/img/profile_styles/pink/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/img/profile_styles/pink/style.css -------------------------------------------------------------------------------- /src/img/profile_styles/purple/header.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/img/profile_styles/purple/header.jpg -------------------------------------------------------------------------------- /src/img/profile_styles/purple/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/img/profile_styles/purple/preview.png -------------------------------------------------------------------------------- /src/img/profile_styles/purple/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/img/profile_styles/purple/style.css -------------------------------------------------------------------------------- /src/img/profile_styles/red/header.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/img/profile_styles/red/header.jpg -------------------------------------------------------------------------------- /src/img/profile_styles/red/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/img/profile_styles/red/preview.png -------------------------------------------------------------------------------- /src/img/profile_styles/red/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/img/profile_styles/red/style.css -------------------------------------------------------------------------------- /src/img/profile_styles/teal/header.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/img/profile_styles/teal/header.jpg -------------------------------------------------------------------------------- /src/img/profile_styles/teal/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/img/profile_styles/teal/preview.png -------------------------------------------------------------------------------- /src/img/profile_styles/teal/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/img/profile_styles/teal/style.css -------------------------------------------------------------------------------- /src/img/profile_styles/winter2019/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/img/profile_styles/winter2019/preview.png -------------------------------------------------------------------------------- /src/img/profile_styles/yellow/header.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/img/profile_styles/yellow/header.jpg -------------------------------------------------------------------------------- /src/img/profile_styles/yellow/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/img/profile_styles/yellow/preview.png -------------------------------------------------------------------------------- /src/img/profile_styles/yellow/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/img/profile_styles/yellow/style.css -------------------------------------------------------------------------------- /src/img/questionmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/img/questionmark.png -------------------------------------------------------------------------------- /src/img/remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/img/remove.png -------------------------------------------------------------------------------- /src/img/save.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/img/save.svg -------------------------------------------------------------------------------- /src/img/screenshot_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/img/screenshot_open.png -------------------------------------------------------------------------------- /src/img/steam/review_graph_expander.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/img/steam/review_graph_expander.png -------------------------------------------------------------------------------- /src/img/steamcardexchange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/img/steamcardexchange.png -------------------------------------------------------------------------------- /src/img/steamdb_store.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/img/steamdb_store.png -------------------------------------------------------------------------------- /src/img/steamdb_store_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/img/steamdb_store_black.png -------------------------------------------------------------------------------- /src/img/wsgf/4k-gold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/img/wsgf/4k-gold.png -------------------------------------------------------------------------------- /src/img/wsgf/4k-incomplete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/img/wsgf/4k-incomplete.png -------------------------------------------------------------------------------- /src/img/wsgf/4k-limited.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/img/wsgf/4k-limited.png -------------------------------------------------------------------------------- /src/img/wsgf/4k-silver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/img/wsgf/4k-silver.png -------------------------------------------------------------------------------- /src/img/wsgf/4k-unsupported.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/img/wsgf/4k-unsupported.png -------------------------------------------------------------------------------- /src/img/wsgf/mm-gold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/img/wsgf/mm-gold.png -------------------------------------------------------------------------------- /src/img/wsgf/mm-incomplete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/img/wsgf/mm-incomplete.png -------------------------------------------------------------------------------- /src/img/wsgf/mm-limited.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/img/wsgf/mm-limited.png -------------------------------------------------------------------------------- /src/img/wsgf/mm-silver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/img/wsgf/mm-silver.png -------------------------------------------------------------------------------- /src/img/wsgf/mm-unsupported.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/img/wsgf/mm-unsupported.png -------------------------------------------------------------------------------- /src/img/wsgf/uw-gold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/img/wsgf/uw-gold.png -------------------------------------------------------------------------------- /src/img/wsgf/uw-incomplete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/img/wsgf/uw-incomplete.png -------------------------------------------------------------------------------- /src/img/wsgf/uw-limited.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/img/wsgf/uw-limited.png -------------------------------------------------------------------------------- /src/img/wsgf/uw-silver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/img/wsgf/uw-silver.png -------------------------------------------------------------------------------- /src/img/wsgf/uw-unsupported.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/img/wsgf/uw-unsupported.png -------------------------------------------------------------------------------- /src/img/wsgf/ws-gold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/img/wsgf/ws-gold.png -------------------------------------------------------------------------------- /src/img/wsgf/ws-incomplete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/img/wsgf/ws-incomplete.png -------------------------------------------------------------------------------- /src/img/wsgf/ws-limited.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/img/wsgf/ws-limited.png -------------------------------------------------------------------------------- /src/img/wsgf/ws-silver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/img/wsgf/ws-silver.png -------------------------------------------------------------------------------- /src/img/wsgf/ws-unsupported.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/img/wsgf/ws-unsupported.png -------------------------------------------------------------------------------- /src/js/Background/Db/IndexedDB.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Background/Db/IndexedDB.ts -------------------------------------------------------------------------------- /src/js/Background/Db/Migration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Background/Db/Migration.ts -------------------------------------------------------------------------------- /src/js/Background/Db/Schemas/ADB5.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Background/Db/Schemas/ADB5.ts -------------------------------------------------------------------------------- /src/js/Background/Db/Schemas/ADB6.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Background/Db/Schemas/ADB6.ts -------------------------------------------------------------------------------- /src/js/Background/Db/Schemas/ADB7.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Background/Db/Schemas/ADB7.ts -------------------------------------------------------------------------------- /src/js/Background/EAction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Background/EAction.ts -------------------------------------------------------------------------------- /src/js/Background/MessageHandlerInterface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Background/MessageHandlerInterface.ts -------------------------------------------------------------------------------- /src/js/Background/Modules/Api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Background/Modules/Api.ts -------------------------------------------------------------------------------- /src/js/Background/Modules/AugmentedSteam/AugmentedSteamApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Background/Modules/AugmentedSteam/AugmentedSteamApi.ts -------------------------------------------------------------------------------- /src/js/Background/Modules/AugmentedSteam/_types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Background/Modules/AugmentedSteam/_types.ts -------------------------------------------------------------------------------- /src/js/Background/Modules/Cache/CacheApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Background/Modules/Cache/CacheApi.ts -------------------------------------------------------------------------------- /src/js/Background/Modules/Cache/SessionCacheApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Background/Modules/Cache/SessionCacheApi.ts -------------------------------------------------------------------------------- /src/js/Background/Modules/Community/SteamCommunityApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Background/Modules/Community/SteamCommunityApi.ts -------------------------------------------------------------------------------- /src/js/Background/Modules/Community/_types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Background/Modules/Community/_types.ts -------------------------------------------------------------------------------- /src/js/Background/Modules/ContextMenu/ContextMenu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Background/Modules/ContextMenu/ContextMenu.ts -------------------------------------------------------------------------------- /src/js/Background/Modules/Dom/DomParserFactory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Background/Modules/Dom/DomParserFactory.ts -------------------------------------------------------------------------------- /src/js/Background/Modules/Dom/DomParserInterface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Background/Modules/Dom/DomParserInterface.ts -------------------------------------------------------------------------------- /src/js/Background/Modules/Dom/NativeDomParser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Background/Modules/Dom/NativeDomParser.ts -------------------------------------------------------------------------------- /src/js/Background/Modules/Dom/OffscreenDomParser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Background/Modules/Dom/OffscreenDomParser.ts -------------------------------------------------------------------------------- /src/js/Background/Modules/Inventory/InventoryApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Background/Modules/Inventory/InventoryApi.ts -------------------------------------------------------------------------------- /src/js/Background/Modules/Inventory/_types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Background/Modules/Inventory/_types.ts -------------------------------------------------------------------------------- /src/js/Background/Modules/IsThereAnyDeal/AccessToken.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Background/Modules/IsThereAnyDeal/AccessToken.ts -------------------------------------------------------------------------------- /src/js/Background/Modules/IsThereAnyDeal/Authorization.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Background/Modules/IsThereAnyDeal/Authorization.ts -------------------------------------------------------------------------------- /src/js/Background/Modules/IsThereAnyDeal/ITADApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Background/Modules/IsThereAnyDeal/ITADApi.ts -------------------------------------------------------------------------------- /src/js/Background/Modules/IsThereAnyDeal/_types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Background/Modules/IsThereAnyDeal/_types.ts -------------------------------------------------------------------------------- /src/js/Background/Modules/Store/SteamStoreApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Background/Modules/Store/SteamStoreApi.ts -------------------------------------------------------------------------------- /src/js/Background/Modules/Store/_types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Background/Modules/Store/_types.ts -------------------------------------------------------------------------------- /src/js/Background/Modules/UserNotes/UserNotesApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Background/Modules/UserNotes/UserNotesApi.ts -------------------------------------------------------------------------------- /src/js/Background/Modules/VaporLens/VaporLensApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Background/Modules/VaporLens/VaporLensApi.ts -------------------------------------------------------------------------------- /src/js/Background/Modules/VaporLens/_types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Background/Modules/VaporLens/_types.ts -------------------------------------------------------------------------------- /src/js/Background/Modules/WebRequest/WebRequestHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Background/Modules/WebRequest/WebRequestHandler.ts -------------------------------------------------------------------------------- /src/js/Background/background.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Background/background.ts -------------------------------------------------------------------------------- /src/js/Background/offscreen_domparser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Background/offscreen_domparser.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Common/CBase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Common/CBase.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Common/CommonExtraLinks.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Common/CommonExtraLinks.svelte -------------------------------------------------------------------------------- /src/js/Content/Features/Common/FDefaultCommunityTab.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Common/FDefaultCommunityTab.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Common/FDisableLinkFilter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Common/FDisableLinkFilter.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Common/FEarlyAccess.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Common/FEarlyAccess.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Common/FHighlightsTags.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Common/FHighlightsTags.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Common/FKeepSSACheckboxState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Common/FKeepSSACheckboxState.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Common/FMediaExpander.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Common/FMediaExpander.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Common/FSkipAgecheck.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Common/FSkipAgecheck.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Common/LoadingElement.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Common/LoadingElement.svelte -------------------------------------------------------------------------------- /src/js/Content/Features/Community/App/CApp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Community/App/CApp.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Community/App/FCommunityAppPageLinks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Community/App/FCommunityAppPageLinks.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Community/App/FCommunityAppPageWishlist.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Community/App/FCommunityAppPageWishlist.svelte -------------------------------------------------------------------------------- /src/js/Content/Features/Community/App/FCommunityAppPageWishlist.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Community/App/FCommunityAppPageWishlist.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Community/App/PApp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Community/App/PApp.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Community/Badges/CBadges.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Community/Badges/CBadges.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Community/Badges/Components/DropStats.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Community/Badges/Components/DropStats.svelte -------------------------------------------------------------------------------- /src/js/Content/Features/Community/Badges/FBadgeCalculations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Community/Badges/FBadgeCalculations.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Community/Badges/FBadgeSortAndFilter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Community/Badges/FBadgeSortAndFilter.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Community/Badges/PBadges.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Community/Badges/PBadges.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Community/BoosterCreator/CBoosterCreator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Community/BoosterCreator/CBoosterCreator.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Community/BoosterCreator/FShowGemsCost.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Community/BoosterCreator/FShowGemsCost.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Community/BoosterCreator/PBoosterCreator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Community/BoosterCreator/PBoosterCreator.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Community/CCommunityBase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Community/CCommunityBase.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Community/EditGuide/CEditGuide.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Community/EditGuide/CEditGuide.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Community/EditGuide/Components/AddTagForm.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Community/EditGuide/Components/AddTagForm.svelte -------------------------------------------------------------------------------- /src/js/Content/Features/Community/EditGuide/FCustomTags.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Community/EditGuide/FCustomTags.svelte -------------------------------------------------------------------------------- /src/js/Content/Features/Community/EditGuide/FCustomTags.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Community/EditGuide/FCustomTags.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Community/EditGuide/PEditGuide.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Community/EditGuide/PEditGuide.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Community/FCardExchangeLinks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Community/FCardExchangeLinks.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Community/FConfirmDeleteComment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Community/FConfirmDeleteComment.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Community/FFavoriteEmoticons.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Community/FFavoriteEmoticons.svelte -------------------------------------------------------------------------------- /src/js/Content/Features/Community/FFavoriteEmoticons.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Community/FFavoriteEmoticons.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Community/FHideSpamComments.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Community/FHideSpamComments.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Community/FPriceHistoryZoomYear.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Community/FPriceHistoryZoomYear.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Community/FriendsAndGroups/CFriendsAndGroups.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Community/FriendsAndGroups/CFriendsAndGroups.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Community/FriendsAndGroups/FFriendsAppendNickname.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Community/FriendsAndGroups/FFriendsAppendNickname.css -------------------------------------------------------------------------------- /src/js/Content/Features/Community/FriendsAndGroups/FFriendsAppendNickname.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Community/FriendsAndGroups/FFriendsAppendNickname.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Community/FriendsAndGroups/FFriendsSort.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Community/FriendsAndGroups/FFriendsSort.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Community/FriendsAndGroups/FGroupsManageButton.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Community/FriendsAndGroups/FGroupsManageButton.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Community/FriendsAndGroups/FGroupsSort.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Community/FriendsAndGroups/FGroupsSort.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Community/FriendsAndGroups/FInviteFriendsToGroup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Community/FriendsAndGroups/FInviteFriendsToGroup.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Community/FriendsAndGroups/PFriendsAndGroups.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Community/FriendsAndGroups/PFriendsAndGroups.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Community/FriendsThatPlay/CFriendsThatPlay.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Community/FriendsThatPlay/CFriendsThatPlay.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Community/FriendsThatPlay/FFriendsCount.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Community/FriendsThatPlay/FFriendsCount.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Community/FriendsThatPlay/FFriendsPlaytimeSort.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Community/FriendsThatPlay/FFriendsPlaytimeSort.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Community/FriendsThatPlay/PFriendsThatPlay.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Community/FriendsThatPlay/PFriendsThatPlay.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Community/GameCard/CGameCard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Community/GameCard/CGameCard.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Community/GameCard/Components/BadgeCompletion.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Community/GameCard/Components/BadgeCompletion.svelte -------------------------------------------------------------------------------- /src/js/Content/Features/Community/GameCard/Components/CardLowestPrice.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Community/GameCard/Components/CardLowestPrice.svelte -------------------------------------------------------------------------------- /src/js/Content/Features/Community/GameCard/FCardExtraLinks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Community/GameCard/FCardExtraLinks.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Community/GameCard/FCardMarketLinks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Community/GameCard/FCardMarketLinks.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Community/GameCard/PGameCard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Community/GameCard/PGameCard.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Community/Games/CGames.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Community/Games/CGames.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Community/Games/FGamesStats.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Community/Games/FGamesStats.svelte -------------------------------------------------------------------------------- /src/js/Content/Features/Community/Games/FGamesStats.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Community/Games/FGamesStats.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Community/Games/PGames.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Community/Games/PGames.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Community/GroupHome/CGroupHome.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Community/GroupHome/CGroupHome.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Community/GroupHome/FFriendsInviteButton.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Community/GroupHome/FFriendsInviteButton.svelte -------------------------------------------------------------------------------- /src/js/Content/Features/Community/GroupHome/FFriendsInviteButton.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Community/GroupHome/FFriendsInviteButton.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Community/GroupHome/FGroupLinks.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Community/GroupHome/FGroupLinks.svelte -------------------------------------------------------------------------------- /src/js/Content/Features/Community/GroupHome/FGroupLinks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Community/GroupHome/FGroupLinks.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Community/GroupHome/PGroupHome.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Community/GroupHome/PGroupHome.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Community/Guides/CGuides.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Community/Guides/CGuides.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Community/Guides/FRemoveGuidesLangFilter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Community/Guides/FRemoveGuidesLangFilter.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Community/Guides/PGuides.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Community/Guides/PGuides.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Community/Inventory/CInventory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Community/Inventory/CInventory.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Community/Inventory/Components/FEquipProfileItems.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Community/Inventory/Components/FEquipProfileItems.svelte -------------------------------------------------------------------------------- /src/js/Content/Features/Community/Inventory/Components/FOneClickGemsOption.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Community/Inventory/Components/FOneClickGemsOption.svelte -------------------------------------------------------------------------------- /src/js/Content/Features/Community/Inventory/Components/FQuickSellOptions.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Community/Inventory/Components/FQuickSellOptions.svelte -------------------------------------------------------------------------------- /src/js/Content/Features/Community/Inventory/Components/MarketPrices.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Community/Inventory/Components/MarketPrices.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Community/Inventory/FInventoryFeatures.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Community/Inventory/FInventoryFeatures.svelte -------------------------------------------------------------------------------- /src/js/Content/Features/Community/Inventory/FInventoryFeatures.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Community/Inventory/FInventoryFeatures.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Community/Inventory/FInventoryGoTo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Community/Inventory/FInventoryGoTo.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Community/Inventory/PInventory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Community/Inventory/PInventory.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Community/MarketHome/CMarketHome.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Community/MarketHome/CMarketHome.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Community/MarketHome/Components/MarketStats.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Community/MarketHome/Components/MarketStats.svelte -------------------------------------------------------------------------------- /src/js/Content/Features/Community/MarketHome/FHideActiveListings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Community/MarketHome/FHideActiveListings.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Community/MarketHome/FMarketLowestPrice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Community/MarketHome/FMarketLowestPrice.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Community/MarketHome/FMarketSort.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Community/MarketHome/FMarketSort.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Community/MarketHome/FMarketStats.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Community/MarketHome/FMarketStats.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Community/MarketHome/FPopularRefreshToggle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Community/MarketHome/FPopularRefreshToggle.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Community/MarketHome/PMarketHome.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Community/MarketHome/PMarketHome.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Community/MarketListing/CMarketListing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Community/MarketListing/CMarketListing.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Community/MarketListing/FBackgroundPreviewLink.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Community/MarketListing/FBackgroundPreviewLink.svelte -------------------------------------------------------------------------------- /src/js/Content/Features/Community/MarketListing/FBackgroundPreviewLink.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Community/MarketListing/FBackgroundPreviewLink.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Community/MarketListing/FBadgePageLink.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Community/MarketListing/FBadgePageLink.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Community/MarketListing/FSoldAmountLastDay.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Community/MarketListing/FSoldAmountLastDay.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Community/MarketListing/PMarketListing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Community/MarketListing/PMarketListing.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Community/MarketSearch/CMarketSearch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Community/MarketSearch/CMarketSearch.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Community/MarketSearch/FHighlightMarketItems.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Community/MarketSearch/FHighlightMarketItems.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Community/MarketSearch/PMarketSearch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Community/MarketSearch/PMarketSearch.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Community/MyWorkshop/CMyWorkshop.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Community/MyWorkshop/CMyWorkshop.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Community/MyWorkshop/FWorkshopFileSizes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Community/MyWorkshop/FWorkshopFileSizes.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Community/MyWorkshop/PMyWorkshop.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Community/MyWorkshop/PMyWorkshop.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Community/PDefaultCommunity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Community/PDefaultCommunity.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Community/ProfileActivity/CProfileActivity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Community/ProfileActivity/CProfileActivity.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Community/ProfileActivity/FAchievementLink.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Community/ProfileActivity/FAchievementLink.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Community/ProfileActivity/FHighlightFriendsActivity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Community/ProfileActivity/FHighlightFriendsActivity.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Community/ProfileActivity/FPatchBlotterFunc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Community/ProfileActivity/FPatchBlotterFunc.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Community/ProfileActivity/FReplaceCommunityHubLinks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Community/ProfileActivity/FReplaceCommunityHubLinks.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Community/ProfileActivity/FToggleComments.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Community/ProfileActivity/FToggleComments.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Community/ProfileActivity/PProfileActivity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Community/ProfileActivity/PProfileActivity.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Community/ProfileEdit/CProfileEdit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Community/ProfileEdit/CProfileEdit.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Community/ProfileEdit/FBackgroundSelection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Community/ProfileEdit/FBackgroundSelection.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Community/ProfileEdit/FStyleSelection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Community/ProfileEdit/FStyleSelection.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Community/ProfileEdit/PProfileEdit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Community/ProfileEdit/PProfileEdit.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Community/ProfileHome/CProfileHome.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Community/ProfileHome/CProfileHome.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Community/ProfileHome/FChatDropdownOptions.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Community/ProfileHome/FChatDropdownOptions.svelte -------------------------------------------------------------------------------- /src/js/Content/Features/Community/ProfileHome/FChatDropdownOptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Community/ProfileHome/FChatDropdownOptions.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Community/ProfileHome/FCommunityProfileLinks.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Community/ProfileHome/FCommunityProfileLinks.svelte -------------------------------------------------------------------------------- /src/js/Content/Features/Community/ProfileHome/FCommunityProfileLinks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Community/ProfileHome/FCommunityProfileLinks.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Community/ProfileHome/FCustomBackground.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Community/ProfileHome/FCustomBackground.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Community/ProfileHome/FCustomStyle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Community/ProfileHome/FCustomStyle.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Community/ProfileHome/FInGameStoreLink.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Community/ProfileHome/FInGameStoreLink.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Community/ProfileHome/FPinnedBackground.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Community/ProfileHome/FPinnedBackground.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Community/ProfileHome/FProfileDropdownOptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Community/ProfileHome/FProfileDropdownOptions.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Community/ProfileHome/FProfileStoreLinks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Community/ProfileHome/FProfileStoreLinks.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Community/ProfileHome/FSupporterBadges.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Community/ProfileHome/FSupporterBadges.svelte -------------------------------------------------------------------------------- /src/js/Content/Features/Community/ProfileHome/FSupporterBadges.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Community/ProfileHome/FSupporterBadges.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Community/ProfileHome/FTwitchShowcase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Community/ProfileHome/FTwitchShowcase.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Community/ProfileHome/FViewSteamId.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Community/ProfileHome/FViewSteamId.svelte -------------------------------------------------------------------------------- /src/js/Content/Features/Community/ProfileHome/FViewSteamId.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Community/ProfileHome/FViewSteamId.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Community/ProfileHome/FWishlistProfileLink.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Community/ProfileHome/FWishlistProfileLink.svelte -------------------------------------------------------------------------------- /src/js/Content/Features/Community/ProfileHome/FWishlistProfileLink.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Community/ProfileHome/FWishlistProfileLink.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Community/ProfileHome/PProfileHome.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Community/ProfileHome/PProfileHome.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Community/ProfileStats/CProfileStats.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Community/ProfileStats/CProfileStats.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Community/ProfileStats/FAchievementSort.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Community/ProfileStats/FAchievementSort.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Community/ProfileStats/FShowHiddenAchievements.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Community/ProfileStats/FShowHiddenAchievements.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Community/ProfileStats/PProfileStats.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Community/ProfileStats/PProfileStats.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Community/Recommended/CRecommended.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Community/Recommended/CRecommended.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Community/Recommended/FReviewSort.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Community/Recommended/FReviewSort.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Community/Recommended/PRecommended.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Community/Recommended/PRecommended.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Community/SharedFiles/CSharedFiles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Community/SharedFiles/CSharedFiles.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Community/SharedFiles/PSharedFiles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Community/SharedFiles/PSharedFiles.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Community/TradeOffer/CTradeOffer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Community/TradeOffer/CTradeOffer.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Community/TradeOffer/FCountTradeItems.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Community/TradeOffer/FCountTradeItems.css -------------------------------------------------------------------------------- /src/js/Content/Features/Community/TradeOffer/FCountTradeItems.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Community/TradeOffer/FCountTradeItems.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Community/TradeOffer/FMyTradeOffersLink.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Community/TradeOffer/FMyTradeOffersLink.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Community/TradeOffer/PTradeOffer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Community/TradeOffer/PTradeOffer.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Community/Workshop/CWorkshop.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Community/Workshop/CWorkshop.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Community/Workshop/CollectionSort/SortButton.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Community/Workshop/CollectionSort/SortButton.svelte -------------------------------------------------------------------------------- /src/js/Content/Features/Community/Workshop/CollectionSort/_types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Community/Workshop/CollectionSort/_types.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Community/Workshop/FBrowseWorkshops.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Community/Workshop/FBrowseWorkshops.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Community/Workshop/FCollectionSort.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Community/Workshop/FCollectionSort.svelte -------------------------------------------------------------------------------- /src/js/Content/Features/Community/Workshop/FCollectionSort.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Community/Workshop/FCollectionSort.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Community/Workshop/PWorkshop.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Community/Workshop/PWorkshop.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Community/WorkshopBrowse/CWorkshopBrowse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Community/WorkshopBrowse/CWorkshopBrowse.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Community/WorkshopBrowse/FWorkshopSubscriberButtons.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Community/WorkshopBrowse/FWorkshopSubscriberButtons.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Community/WorkshopBrowse/PWorkshopBrowse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Community/WorkshopBrowse/PWorkshopBrowse.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Community/WorkshopBrowse/Workshop.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Community/WorkshopBrowse/Workshop.ts -------------------------------------------------------------------------------- /src/js/Content/Features/CommunityPage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/CommunityPage.ts -------------------------------------------------------------------------------- /src/js/Content/Features/LegacyPage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/LegacyPage.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Page.ts -------------------------------------------------------------------------------- /src/js/Content/Features/ReactPage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/ReactPage.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Store/Account/CAccount.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Store/Account/CAccount.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Store/Account/FUsefulLinks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Store/Account/FUsefulLinks.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Store/Account/PAccount.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Store/Account/PAccount.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Store/AgeCheck/CAgecheck.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Store/AgeCheck/CAgecheck.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Store/AgeCheck/PAgecheck.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Store/AgeCheck/PAgecheck.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Store/App/CApp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Store/App/CApp.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Store/App/FAchievementBar.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Store/App/FAchievementBar.svelte -------------------------------------------------------------------------------- /src/js/Content/Features/Store/App/FAchievementBar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Store/App/FAchievementBar.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Store/App/FAppTitle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Store/App/FAppTitle.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Store/App/FBadgeProgress.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Store/App/FBadgeProgress.svelte -------------------------------------------------------------------------------- /src/js/Content/Features/Store/App/FBadgeProgress.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Store/App/FBadgeProgress.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Store/App/FDLCCheckboxes.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Store/App/FDLCCheckboxes.css -------------------------------------------------------------------------------- /src/js/Content/Features/Store/App/FDLCCheckboxes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Store/App/FDLCCheckboxes.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Store/App/FDLCInfo.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Store/App/FDLCInfo.svelte -------------------------------------------------------------------------------- /src/js/Content/Features/Store/App/FDLCInfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Store/App/FDLCInfo.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Store/App/FDemoAbovePurchase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Store/App/FDemoAbovePurchase.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Store/App/FFamilySharingNotice.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Store/App/FFamilySharingNotice.svelte -------------------------------------------------------------------------------- /src/js/Content/Features/Store/App/FFamilySharingNotice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Store/App/FFamilySharingNotice.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Store/App/FFullscreenScreenshotView.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Store/App/FFullscreenScreenshotView.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Store/App/FHideReportedTags.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Store/App/FHideReportedTags.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Store/App/FHighlightTitle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Store/App/FHighlightTitle.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Store/App/FHorizontalScrolling.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Store/App/FHorizontalScrolling.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Store/App/FHowLongToBeat.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Store/App/FHowLongToBeat.svelte -------------------------------------------------------------------------------- /src/js/Content/Features/Store/App/FHowLongToBeat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Store/App/FHowLongToBeat.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Store/App/FMetacriticUserScore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Store/App/FMetacriticUserScore.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Store/App/FNewQueue.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Store/App/FNewQueue.svelte -------------------------------------------------------------------------------- /src/js/Content/Features/Store/App/FNewQueue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Store/App/FNewQueue.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Store/App/FOpenCritic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Store/App/FOpenCritic.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Store/App/FOwnedActionsButtons.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Store/App/FOwnedActionsButtons.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Store/App/FOwnedElsewhere.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Store/App/FOwnedElsewhere.svelte -------------------------------------------------------------------------------- /src/js/Content/Features/Store/App/FOwnedElsewhere.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Store/App/FOwnedElsewhere.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Store/App/FPackageInfoButton.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Store/App/FPackageInfoButton.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Store/App/FPatchHighlightPlayer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Store/App/FPatchHighlightPlayer.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Store/App/FPlayers.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Store/App/FPlayers.svelte -------------------------------------------------------------------------------- /src/js/Content/Features/Store/App/FPlayers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Store/App/FPlayers.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Store/App/FPreventVideoPause.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Store/App/FPreventVideoPause.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Store/App/FPurchaseDate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Store/App/FPurchaseDate.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Store/App/FRemoveBroadcasts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Store/App/FRemoveBroadcasts.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Store/App/FRemoveDupeScreenshots.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Store/App/FRemoveDupeScreenshots.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Store/App/FReplaceDevPubLinks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Store/App/FReplaceDevPubLinks.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Store/App/FReviewToggleButton.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Store/App/FReviewToggleButton.svelte -------------------------------------------------------------------------------- /src/js/Content/Features/Store/App/FReviewToggleButton.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Store/App/FReviewToggleButton.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Store/App/FSaveReviewFilters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Store/App/FSaveReviewFilters.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Store/App/FSteamPeek.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Store/App/FSteamPeek.svelte -------------------------------------------------------------------------------- /src/js/Content/Features/Store/App/FSteamPeek.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Store/App/FSteamPeek.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Store/App/FSupportInfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Store/App/FSupportInfo.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Store/App/FUserNotes.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Store/App/FUserNotes.svelte -------------------------------------------------------------------------------- /src/js/Content/Features/Store/App/FUserNotes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Store/App/FUserNotes.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Store/App/FVaporLensInsights.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Store/App/FVaporLensInsights.svelte -------------------------------------------------------------------------------- /src/js/Content/Features/Store/App/FVaporLensInsights.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Store/App/FVaporLensInsights.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Store/App/FWaitlistDropdown.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Store/App/FWaitlistDropdown.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Store/App/FWidescreenCertification.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Store/App/FWidescreenCertification.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Store/App/PApp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Store/App/PApp.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Store/App/Vaporlens/VaporlensDetails.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Store/App/Vaporlens/VaporlensDetails.svelte -------------------------------------------------------------------------------- /src/js/Content/Features/Store/App/Vaporlens/VaporlensExplanation.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Store/App/Vaporlens/VaporlensExplanation.svelte -------------------------------------------------------------------------------- /src/js/Content/Features/Store/Bundle/CBundle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Store/Bundle/CBundle.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Store/Bundle/PBundle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Store/Bundle/PBundle.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Store/Cart/CCart.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Store/Cart/CCart.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Store/Cart/FCartHistoryLink.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Store/Cart/FCartHistoryLink.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Store/Cart/PCart.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Store/Cart/PCart.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Store/Common/CStoreBase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Store/Common/CStoreBase.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Store/Common/Customizer/Customizer.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Store/Common/Customizer/Customizer.svelte -------------------------------------------------------------------------------- /src/js/Content/Features/Store/Common/Customizer/CustomizerSetup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Store/Common/Customizer/CustomizerSetup.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Store/Common/ExtraLinks/AppLinks.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Store/Common/ExtraLinks/AppLinks.svelte -------------------------------------------------------------------------------- /src/js/Content/Features/Store/Common/ExtraLinks/ExtraLink.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Store/Common/ExtraLinks/ExtraLink.svelte -------------------------------------------------------------------------------- /src/js/Content/Features/Store/Common/FAlternativeLinuxIcon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Store/Common/FAlternativeLinuxIcon.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Store/Common/FCustomizer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Store/Common/FCustomizer.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Store/Common/FDRMWarnings.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Store/Common/FDRMWarnings.svelte -------------------------------------------------------------------------------- /src/js/Content/Features/Store/Common/FDRMWarnings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Store/Common/FDRMWarnings.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Store/Common/FExtraLinksApp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Store/Common/FExtraLinksApp.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Store/Common/FExtraLinksAppError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Store/Common/FExtraLinksAppError.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Store/Common/FExtraLinksCommon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Store/Common/FExtraLinksCommon.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Store/Common/FHorizontalScrolling.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Store/Common/FHorizontalScrolling.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Store/Common/FITADPrices.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Store/Common/FITADPrices.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Store/Common/FRegionalPricing.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Store/Common/FRegionalPricing.svelte -------------------------------------------------------------------------------- /src/js/Content/Features/Store/Common/FRegionalPricing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Store/Common/FRegionalPricing.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Store/Common/FSkipGotSteamDialog.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Store/Common/FSkipGotSteamDialog.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Store/Common/UserNotes/NotesForm.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Store/Common/UserNotes/NotesForm.svelte -------------------------------------------------------------------------------- /src/js/Content/Features/Store/Common/UserNotes/UserNotes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Store/Common/UserNotes/UserNotes.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Store/Funds/CFunds.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Store/Funds/CFunds.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Store/Funds/FCustomGiftcardAndWallet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Store/Funds/FCustomGiftcardAndWallet.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Store/Funds/PFunds.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Store/Funds/PFunds.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Store/Licenses/CLicenses.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Store/Licenses/CLicenses.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Store/Licenses/FLicensesSummary.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Store/Licenses/FLicensesSummary.svelte -------------------------------------------------------------------------------- /src/js/Content/Features/Store/Licenses/FLicensesSummary.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Store/Licenses/FLicensesSummary.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Store/Licenses/PLicenses.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Store/Licenses/PLicenses.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Store/PDefaultStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Store/PDefaultStore.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Store/PointsShop/CPointsShop.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Store/PointsShop/CPointsShop.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Store/PointsShop/FBackgroundPreviewLink.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Store/PointsShop/FBackgroundPreviewLink.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Store/PointsShop/PPointsShop.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Store/PointsShop/PPointsShop.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Store/RegisterKey/CRegisterKey.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Store/RegisterKey/CRegisterKey.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Store/RegisterKey/Components/MultiProductKeysForm.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Store/RegisterKey/Components/MultiProductKeysForm.svelte -------------------------------------------------------------------------------- /src/js/Content/Features/Store/RegisterKey/Components/RegisterMultipleButton.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Store/RegisterKey/Components/RegisterMultipleButton.svelte -------------------------------------------------------------------------------- /src/js/Content/Features/Store/RegisterKey/FMultiProductKeys.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Store/RegisterKey/FMultiProductKeys.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Store/RegisterKey/PRegisterKey.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Store/RegisterKey/PRegisterKey.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Store/Search/CSearch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Store/Search/CSearch.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Store/Search/FIFeelLucky.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Store/Search/FIFeelLucky.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Store/Search/FSearchFilters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Store/Search/FSearchFilters.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Store/Search/Filters/CartSearchFilter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Store/Search/Filters/CartSearchFilter.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Store/Search/Filters/DiscountPercentSearchFilter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Store/Search/Filters/DiscountPercentSearchFilter.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Store/Search/Filters/EarlyAccessSearchFilter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Store/Search/Filters/EarlyAccessSearchFilter.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Store/Search/Filters/MixedSearchFilter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Store/Search/Filters/MixedSearchFilter.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Store/Search/Filters/NegativeSearchFilter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Store/Search/Filters/NegativeSearchFilter.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Store/Search/Filters/ReviewsCountSearchFilter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Store/Search/Filters/ReviewsCountSearchFilter.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Store/Search/Filters/ReviewsScoreSearchFilter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Store/Search/Filters/ReviewsScoreSearchFilter.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Store/Search/Filters/SearchFilter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Store/Search/Filters/SearchFilter.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Store/Search/Filters/SimpleSearchFilter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Store/Search/Filters/SimpleSearchFilter.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Store/Search/PSearch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Store/Search/PSearch.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Store/Storefront/CStoreFront.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Store/Storefront/CStoreFront.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Store/Storefront/FHomePageTab.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Store/Storefront/FHomePageTab.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Store/Storefront/PStoreFront.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Store/Storefront/PStoreFront.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Store/Sub/CSub.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Store/Sub/CSub.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Store/Sub/FSavingsCheck.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Store/Sub/FSavingsCheck.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Store/Sub/PSub.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Store/Sub/PSub.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Store/Wishlist/CWishlist.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Store/Wishlist/CWishlist.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Store/Wishlist/Components/ExportWishlistForm.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Store/Wishlist/Components/ExportWishlistForm.svelte -------------------------------------------------------------------------------- /src/js/Content/Features/Store/Wishlist/Components/RankInput.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Store/Wishlist/Components/RankInput.svelte -------------------------------------------------------------------------------- /src/js/Content/Features/Store/Wishlist/Components/WishlistButton.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Store/Wishlist/Components/WishlistButton.svelte -------------------------------------------------------------------------------- /src/js/Content/Features/Store/Wishlist/Components/WishlistMenu.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Store/Wishlist/Components/WishlistMenu.svelte -------------------------------------------------------------------------------- /src/js/Content/Features/Store/Wishlist/Components/WishlistMenu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Store/Wishlist/Components/WishlistMenu.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Store/Wishlist/Components/WishlistStats.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Store/Wishlist/Components/WishlistStats.svelte -------------------------------------------------------------------------------- /src/js/Content/Features/Store/Wishlist/Components/WishlistUserNote.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Store/Wishlist/Components/WishlistUserNote.svelte -------------------------------------------------------------------------------- /src/js/Content/Features/Store/Wishlist/FEmptyWishlist.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Store/Wishlist/FEmptyWishlist.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Store/Wishlist/FExportWishlist.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Store/Wishlist/FExportWishlist.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Store/Wishlist/FKeepEditableRanking.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Store/Wishlist/FKeepEditableRanking.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Store/Wishlist/FWishlistHighlights.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Store/Wishlist/FWishlistHighlights.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Store/Wishlist/FWishlistITADPrices.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Store/Wishlist/FWishlistITADPrices.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Store/Wishlist/FWishlistProfileLink.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Store/Wishlist/FWishlistProfileLink.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Store/Wishlist/FWishlistStats.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Store/Wishlist/FWishlistStats.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Store/Wishlist/FWishlistUserNotes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Store/Wishlist/FWishlistUserNotes.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Store/Wishlist/PWishlist.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Store/Wishlist/PWishlist.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Store/Wishlist/Utils/WishlistDOM.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Store/Wishlist/Utils/WishlistDOM.ts -------------------------------------------------------------------------------- /src/js/Content/Features/Store/Wishlist/Utils/WishlistExporter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/Store/Wishlist/Utils/WishlistExporter.ts -------------------------------------------------------------------------------- /src/js/Content/Features/StorePage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/StorePage.ts -------------------------------------------------------------------------------- /src/js/Content/Features/_types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Features/_types.ts -------------------------------------------------------------------------------- /src/js/Content/Icons/CaretDownIcon.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Icons/CaretDownIcon.svelte -------------------------------------------------------------------------------- /src/js/Content/Icons/CaretUpIcon.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Icons/CaretUpIcon.svelte -------------------------------------------------------------------------------- /src/js/Content/Icons/ClearIcon.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Icons/ClearIcon.svelte -------------------------------------------------------------------------------- /src/js/Content/Icons/Icon.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Icons/Icon.svelte -------------------------------------------------------------------------------- /src/js/Content/Icons/RedeemableIcon.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Icons/RedeemableIcon.svelte -------------------------------------------------------------------------------- /src/js/Content/Icons/RedeemedIcon.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Icons/RedeemedIcon.svelte -------------------------------------------------------------------------------- /src/js/Content/Icons/UserNoteIcon.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Icons/UserNoteIcon.svelte -------------------------------------------------------------------------------- /src/js/Content/Modules/ASEventHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Modules/ASEventHandler.ts -------------------------------------------------------------------------------- /src/js/Content/Modules/AugmentedSteam.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Modules/AugmentedSteam.ts -------------------------------------------------------------------------------- /src/js/Content/Modules/Clipboard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Modules/Clipboard.ts -------------------------------------------------------------------------------- /src/js/Content/Modules/Community/CommunityUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Modules/Community/CommunityUtils.ts -------------------------------------------------------------------------------- /src/js/Content/Modules/Community/ProfileLink.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Modules/Community/ProfileLink.svelte -------------------------------------------------------------------------------- /src/js/Content/Modules/Community/SpamComments.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Modules/Community/SpamComments.ts -------------------------------------------------------------------------------- /src/js/Content/Modules/Context/Context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Modules/Context/Context.ts -------------------------------------------------------------------------------- /src/js/Content/Modules/Context/ContextType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Modules/Context/ContextType.ts -------------------------------------------------------------------------------- /src/js/Content/Modules/Context/Feature.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Modules/Context/Feature.ts -------------------------------------------------------------------------------- /src/js/Content/Modules/Currency/CurrencyManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Modules/Currency/CurrencyManager.ts -------------------------------------------------------------------------------- /src/js/Content/Modules/Currency/Price.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Modules/Currency/Price.ts -------------------------------------------------------------------------------- /src/js/Content/Modules/DOMHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Modules/DOMHelper.ts -------------------------------------------------------------------------------- /src/js/Content/Modules/Data/DynamicStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Modules/Data/DynamicStore.ts -------------------------------------------------------------------------------- /src/js/Content/Modules/EarlyAccess/EarlyAccess.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Modules/EarlyAccess/EarlyAccess.svelte -------------------------------------------------------------------------------- /src/js/Content/Modules/EarlyAccess/EarlyAccessUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Modules/EarlyAccess/EarlyAccessUtils.ts -------------------------------------------------------------------------------- /src/js/Content/Modules/Facades/AugmentedSteamApiFacade.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Modules/Facades/AugmentedSteamApiFacade.ts -------------------------------------------------------------------------------- /src/js/Content/Modules/Facades/CacheApiFacade.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Modules/Facades/CacheApiFacade.ts -------------------------------------------------------------------------------- /src/js/Content/Modules/Facades/ITADApiFacade.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Modules/Facades/ITADApiFacade.ts -------------------------------------------------------------------------------- /src/js/Content/Modules/Facades/InventoryApiFacade.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Modules/Facades/InventoryApiFacade.ts -------------------------------------------------------------------------------- /src/js/Content/Modules/Facades/SessionCacheApiFacade.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Modules/Facades/SessionCacheApiFacade.ts -------------------------------------------------------------------------------- /src/js/Content/Modules/Facades/SteamCommunityApiFacade.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Modules/Facades/SteamCommunityApiFacade.ts -------------------------------------------------------------------------------- /src/js/Content/Modules/Facades/SteamFacade.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Modules/Facades/SteamFacade.ts -------------------------------------------------------------------------------- /src/js/Content/Modules/Facades/SteamStoreApiFacade.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Modules/Facades/SteamStoreApiFacade.ts -------------------------------------------------------------------------------- /src/js/Content/Modules/Facades/VaporLensApiFacade.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Modules/Facades/VaporLensApiFacade.ts -------------------------------------------------------------------------------- /src/js/Content/Modules/Highlights/HighlightsTagsUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Modules/Highlights/HighlightsTagsUtils.ts -------------------------------------------------------------------------------- /src/js/Content/Modules/Highlights/HighlightsTagsUtils2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Modules/Highlights/HighlightsTagsUtils2.ts -------------------------------------------------------------------------------- /src/js/Content/Modules/Highlights/Tags.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Modules/Highlights/Tags.svelte -------------------------------------------------------------------------------- /src/js/Content/Modules/ITAD.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Modules/ITAD.ts -------------------------------------------------------------------------------- /src/js/Content/Modules/Messaging/MessageHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Modules/Messaging/MessageHandler.ts -------------------------------------------------------------------------------- /src/js/Content/Modules/Messaging/Messenger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Modules/Messaging/Messenger.ts -------------------------------------------------------------------------------- /src/js/Content/Modules/Prices/BundleOverview.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Modules/Prices/BundleOverview.svelte -------------------------------------------------------------------------------- /src/js/Content/Modules/Prices/PriceOverview.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Modules/Prices/PriceOverview.svelte -------------------------------------------------------------------------------- /src/js/Content/Modules/Prices/PriceWithAlt.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Modules/Prices/PriceWithAlt.svelte -------------------------------------------------------------------------------- /src/js/Content/Modules/Prices/Prices.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Modules/Prices/Prices.ts -------------------------------------------------------------------------------- /src/js/Content/Modules/RequestData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Modules/RequestData.ts -------------------------------------------------------------------------------- /src/js/Content/Modules/SteamApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Modules/SteamApi.ts -------------------------------------------------------------------------------- /src/js/Content/Modules/UserNotes/Adapters/AdapterInterface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Modules/UserNotes/Adapters/AdapterInterface.ts -------------------------------------------------------------------------------- /src/js/Content/Modules/UserNotes/Adapters/IdbAdapter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Modules/UserNotes/Adapters/IdbAdapter.ts -------------------------------------------------------------------------------- /src/js/Content/Modules/UserNotes/Adapters/SyncedStorageAdapter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Modules/UserNotes/Adapters/SyncedStorageAdapter.ts -------------------------------------------------------------------------------- /src/js/Content/Modules/UserNotes/CapacityInfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Modules/UserNotes/CapacityInfo.ts -------------------------------------------------------------------------------- /src/js/Content/Modules/UserNotes/Modals/NoteEditModal.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Modules/UserNotes/Modals/NoteEditModal.svelte -------------------------------------------------------------------------------- /src/js/Content/Modules/UserNotes/OutOfCapacityError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Modules/UserNotes/OutOfCapacityError.ts -------------------------------------------------------------------------------- /src/js/Content/Modules/UserNotes/UserNotesAdapter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Modules/UserNotes/UserNotesAdapter.ts -------------------------------------------------------------------------------- /src/js/Content/Modules/WebRequest/WebRequestListener.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Modules/WebRequest/WebRequestListener.ts -------------------------------------------------------------------------------- /src/js/Content/Modules/Widgets/AugmentedSteam/AugmentedSteamMenu.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Modules/Widgets/AugmentedSteam/AugmentedSteamMenu.svelte -------------------------------------------------------------------------------- /src/js/Content/Modules/Widgets/AugmentedSteam/AugmentedSteamWarnings.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Modules/Widgets/AugmentedSteam/AugmentedSteamWarnings.svelte -------------------------------------------------------------------------------- /src/js/Content/Modules/Widgets/AugmentedSteam/BackToTop.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Modules/Widgets/AugmentedSteam/BackToTop.svelte -------------------------------------------------------------------------------- /src/js/Content/Modules/Widgets/AugmentedSteam/Components/LanguageWarning.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Modules/Widgets/AugmentedSteam/Components/LanguageWarning.svelte -------------------------------------------------------------------------------- /src/js/Content/Modules/Widgets/AugmentedSteam/Components/LoginWarning.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Modules/Widgets/AugmentedSteam/Components/LoginWarning.svelte -------------------------------------------------------------------------------- /src/js/Content/Modules/Widgets/AugmentedSteam/Components/Warning.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Modules/Widgets/AugmentedSteam/Components/Warning.svelte -------------------------------------------------------------------------------- /src/js/Content/Modules/Widgets/ITADSync/ITADSyncMenu.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Modules/Widgets/ITADSync/ITADSyncMenu.svelte -------------------------------------------------------------------------------- /src/js/Content/Modules/Widgets/ITADSync/ITADSyncStatus.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Modules/Widgets/ITADSync/ITADSyncStatus.svelte -------------------------------------------------------------------------------- /src/js/Content/Modules/Widgets/ProgressBar.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Modules/Widgets/ProgressBar.svelte -------------------------------------------------------------------------------- /src/js/Content/Modules/Widgets/ProgressBar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Modules/Widgets/ProgressBar.ts -------------------------------------------------------------------------------- /src/js/Content/Modules/Widgets/SortBox.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Modules/Widgets/SortBox.svelte -------------------------------------------------------------------------------- /src/js/Content/Modules/Widgets/SortboxChangeEvent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Modules/Widgets/SortboxChangeEvent.ts -------------------------------------------------------------------------------- /src/js/Content/Steam/ReactDOM.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Steam/ReactDOM.ts -------------------------------------------------------------------------------- /src/js/Content/Steam/SmallSteamButton.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Steam/SmallSteamButton.svelte -------------------------------------------------------------------------------- /src/js/Content/Steam/ToggleIcon.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/Steam/ToggleIcon.svelte -------------------------------------------------------------------------------- /src/js/Content/externalLink.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Content/externalLink.ts -------------------------------------------------------------------------------- /src/js/Core/AppConfig/AppConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Core/AppConfig/AppConfig.ts -------------------------------------------------------------------------------- /src/js/Core/AppConfig/AppConfigFactory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Core/AppConfig/AppConfigFactory.ts -------------------------------------------------------------------------------- /src/js/Core/Asserts/AssertNever.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Core/Asserts/AssertNever.ts -------------------------------------------------------------------------------- /src/js/Core/Background.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Core/Background.ts -------------------------------------------------------------------------------- /src/js/Core/Currencies.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Core/Currencies.ts -------------------------------------------------------------------------------- /src/js/Core/Debug.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Core/Debug.ts -------------------------------------------------------------------------------- /src/js/Core/Downloader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Core/Downloader.ts -------------------------------------------------------------------------------- /src/js/Core/Environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Core/Environment.ts -------------------------------------------------------------------------------- /src/js/Core/Errors/ErrorParser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Core/Errors/ErrorParser.ts -------------------------------------------------------------------------------- /src/js/Core/Errors/Errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Core/Errors/Errors.ts -------------------------------------------------------------------------------- /src/js/Core/ExtensionResources.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Core/ExtensionResources.ts -------------------------------------------------------------------------------- /src/js/Core/GameId/AppId.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Core/GameId/AppId.ts -------------------------------------------------------------------------------- /src/js/Core/GameId/BundleId.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Core/GameId/BundleId.ts -------------------------------------------------------------------------------- /src/js/Core/GameId/GameId.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Core/GameId/GameId.ts -------------------------------------------------------------------------------- /src/js/Core/GameId/SubId.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Core/GameId/SubId.ts -------------------------------------------------------------------------------- /src/js/Core/Html/Html.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Core/Html/Html.ts -------------------------------------------------------------------------------- /src/js/Core/Html/HtmlParser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Core/Html/HtmlParser.ts -------------------------------------------------------------------------------- /src/js/Core/Info.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Core/Info.ts -------------------------------------------------------------------------------- /src/js/Core/Localization/Language.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Core/Localization/Language.ts -------------------------------------------------------------------------------- /src/js/Core/Localization/LanguageFactory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Core/Localization/LanguageFactory.ts -------------------------------------------------------------------------------- /src/js/Core/Localization/Localization.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Core/Localization/Localization.ts -------------------------------------------------------------------------------- /src/js/Core/Modals/AlertDialog.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Core/Modals/AlertDialog.ts -------------------------------------------------------------------------------- /src/js/Core/Modals/BlockingWaitDialog.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Core/Modals/BlockingWaitDialog.ts -------------------------------------------------------------------------------- /src/js/Core/Modals/ConfirmDialog.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Core/Modals/ConfirmDialog.ts -------------------------------------------------------------------------------- /src/js/Core/Modals/Contained/BlockingWaitModal.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Core/Modals/Contained/BlockingWaitModal.svelte -------------------------------------------------------------------------------- /src/js/Core/Modals/Contained/EModalAction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Core/Modals/Contained/EModalAction.ts -------------------------------------------------------------------------------- /src/js/Core/Modals/Contained/Modal.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Core/Modals/Contained/Modal.svelte -------------------------------------------------------------------------------- /src/js/Core/Modals/Contained/ModalButton.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Core/Modals/Contained/ModalButton.svelte -------------------------------------------------------------------------------- /src/js/Core/Modals/CustomModal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Core/Modals/CustomModal.ts -------------------------------------------------------------------------------- /src/js/Core/Permissions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Core/Permissions.ts -------------------------------------------------------------------------------- /src/js/Core/Protobufs/Compiled/proto.bundle.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Core/Protobufs/Compiled/proto.bundle.d.ts -------------------------------------------------------------------------------- /src/js/Core/Protobufs/Compiled/proto.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Core/Protobufs/Compiled/proto.bundle.js -------------------------------------------------------------------------------- /src/js/Core/Protobufs/ProtobufUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Core/Protobufs/ProtobufUtils.ts -------------------------------------------------------------------------------- /src/js/Core/Protobufs/ServiceFactory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Core/Protobufs/ServiceFactory.ts -------------------------------------------------------------------------------- /src/js/Core/Protobufs/protobuf.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Core/Protobufs/protobuf.ts -------------------------------------------------------------------------------- /src/js/Core/Storage/CookieReader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Core/Storage/CookieReader.ts -------------------------------------------------------------------------------- /src/js/Core/Storage/LocalStorage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Core/Storage/LocalStorage.ts -------------------------------------------------------------------------------- /src/js/Core/Storage/Storage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Core/Storage/Storage.ts -------------------------------------------------------------------------------- /src/js/Core/Storage/SyncedStorage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Core/Storage/SyncedStorage.ts -------------------------------------------------------------------------------- /src/js/Core/Sync/ESyncStatus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Core/Sync/ESyncStatus.ts -------------------------------------------------------------------------------- /src/js/Core/Sync/SyncIndicator.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Core/Sync/SyncIndicator.svelte -------------------------------------------------------------------------------- /src/js/Core/Update/Changelog.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Core/Update/Changelog.svelte -------------------------------------------------------------------------------- /src/js/Core/Update/ChangelogHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Core/Update/ChangelogHandler.ts -------------------------------------------------------------------------------- /src/js/Core/Update/SettingsMigration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Core/Update/SettingsMigration.ts -------------------------------------------------------------------------------- /src/js/Core/User/LegacyUser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Core/User/LegacyUser.ts -------------------------------------------------------------------------------- /src/js/Core/User/ReactUser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Core/User/ReactUser.ts -------------------------------------------------------------------------------- /src/js/Core/User/UserFactory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Core/User/UserFactory.ts -------------------------------------------------------------------------------- /src/js/Core/User/UserInterface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Core/User/UserInterface.ts -------------------------------------------------------------------------------- /src/js/Core/Utils/StringUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Core/Utils/StringUtils.ts -------------------------------------------------------------------------------- /src/js/Core/Utils/TimeUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Core/Utils/TimeUtils.ts -------------------------------------------------------------------------------- /src/js/Core/Utils/UrlUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Core/Utils/UrlUtils.ts -------------------------------------------------------------------------------- /src/js/Core/Version.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Core/Version.ts -------------------------------------------------------------------------------- /src/js/Icons/FlagIcon.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Icons/FlagIcon.svelte -------------------------------------------------------------------------------- /src/js/Icons/ProfileLinkIcon.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Icons/ProfileLinkIcon.svelte -------------------------------------------------------------------------------- /src/js/Options/Data/Settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Options/Data/Settings.ts -------------------------------------------------------------------------------- /src/js/Options/Data/_types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Options/Data/_types.ts -------------------------------------------------------------------------------- /src/js/Options/Modules/About/About.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Options/Modules/About/About.svelte -------------------------------------------------------------------------------- /src/js/Options/Modules/About/LocaleLegacyCredits.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Options/Modules/About/LocaleLegacyCredits.ts -------------------------------------------------------------------------------- /src/js/Options/Modules/Changelog/Changelog.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Options/Modules/Changelog/Changelog.svelte -------------------------------------------------------------------------------- /src/js/Options/Modules/Footer.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Options/Modules/Footer.svelte -------------------------------------------------------------------------------- /src/js/Options/Modules/Header.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Options/Modules/Header.svelte -------------------------------------------------------------------------------- /src/js/Options/Modules/Icons/AddIcon.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Options/Modules/Icons/AddIcon.svelte -------------------------------------------------------------------------------- /src/js/Options/Modules/Icons/DeleteIcon.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Options/Modules/Icons/DeleteIcon.svelte -------------------------------------------------------------------------------- /src/js/Options/Modules/Icons/SyncPullIcon.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Options/Modules/Icons/SyncPullIcon.svelte -------------------------------------------------------------------------------- /src/js/Options/Modules/Icons/SyncPushIcon.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Options/Modules/Icons/SyncPushIcon.svelte -------------------------------------------------------------------------------- /src/js/Options/Modules/Icons/ToggleIcon.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Options/Modules/Icons/ToggleIcon.svelte -------------------------------------------------------------------------------- /src/js/Options/Modules/Options/AppPageOptions.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Options/Modules/Options/AppPageOptions.svelte -------------------------------------------------------------------------------- /src/js/Options/Modules/Options/CommunityOptions.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Options/Modules/Options/CommunityOptions.svelte -------------------------------------------------------------------------------- /src/js/Options/Modules/Options/Components/ColorPicker.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Options/Modules/Options/Components/ColorPicker.svelte -------------------------------------------------------------------------------- /src/js/Options/Modules/Options/Components/ColorToggle.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Options/Modules/Options/Components/ColorToggle.svelte -------------------------------------------------------------------------------- /src/js/Options/Modules/Options/Components/LocalizedCountryList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Options/Modules/Options/Components/LocalizedCountryList.ts -------------------------------------------------------------------------------- /src/js/Options/Modules/Options/Components/OptionGroup.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Options/Modules/Options/Components/OptionGroup.svelte -------------------------------------------------------------------------------- /src/js/Options/Modules/Options/Components/ProfileLink.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Options/Modules/Options/Components/ProfileLink.svelte -------------------------------------------------------------------------------- /src/js/Options/Modules/Options/Components/Section.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Options/Modules/Options/Components/Section.svelte -------------------------------------------------------------------------------- /src/js/Options/Modules/Options/Components/Select.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Options/Modules/Options/Components/Select.svelte -------------------------------------------------------------------------------- /src/js/Options/Modules/Options/Components/SubOptions.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Options/Modules/Options/Components/SubOptions.svelte -------------------------------------------------------------------------------- /src/js/Options/Modules/Options/Components/Toggle.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Options/Modules/Options/Components/Toggle.svelte -------------------------------------------------------------------------------- /src/js/Options/Modules/Options/GeneralOptions.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Options/Modules/Options/GeneralOptions.svelte -------------------------------------------------------------------------------- /src/js/Options/Modules/Options/ITADOptions.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Options/Modules/Options/ITADOptions.svelte -------------------------------------------------------------------------------- /src/js/Options/Modules/Options/PriceOptions.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Options/Modules/Options/PriceOptions.svelte -------------------------------------------------------------------------------- /src/js/Options/Modules/Options/Settings/ContextMenuOptions.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Options/Modules/Options/Settings/ContextMenuOptions.svelte -------------------------------------------------------------------------------- /src/js/Options/Modules/Options/Settings/CustomLinks.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Options/Modules/Options/Settings/CustomLinks.svelte -------------------------------------------------------------------------------- /src/js/Options/Modules/Options/Settings/HideSpamCommentsSettings.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Options/Modules/Options/Settings/HideSpamCommentsSettings.svelte -------------------------------------------------------------------------------- /src/js/Options/Modules/Options/Settings/ITADConnection.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Options/Modules/Options/Settings/ITADConnection.svelte -------------------------------------------------------------------------------- /src/js/Options/Modules/Options/Settings/LanguageWarningSetting.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Options/Modules/Options/Settings/LanguageWarningSetting.svelte -------------------------------------------------------------------------------- /src/js/Options/Modules/Options/Settings/NotesSyncControls.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Options/Modules/Options/Settings/NotesSyncControls.svelte -------------------------------------------------------------------------------- /src/js/Options/Modules/Options/Settings/OverridePriceSetting.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Options/Modules/Options/Settings/OverridePriceSetting.svelte -------------------------------------------------------------------------------- /src/js/Options/Modules/Options/Settings/QuickSellSettings.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Options/Modules/Options/Settings/QuickSellSettings.svelte -------------------------------------------------------------------------------- /src/js/Options/Modules/Options/Settings/RegionSelect.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Options/Modules/Options/Settings/RegionSelect.svelte -------------------------------------------------------------------------------- /src/js/Options/Modules/Options/Settings/StoreListSetting.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Options/Modules/Options/Settings/StoreListSetting.svelte -------------------------------------------------------------------------------- /src/js/Options/Modules/Options/Settings/SyncEvents.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Options/Modules/Options/Settings/SyncEvents.svelte -------------------------------------------------------------------------------- /src/js/Options/Modules/Options/StoreOptions.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Options/Modules/Options/StoreOptions.svelte -------------------------------------------------------------------------------- /src/js/Options/Modules/Sidebar.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Options/Modules/Sidebar.svelte -------------------------------------------------------------------------------- /src/js/Options/OptionsPage.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Options/OptionsPage.svelte -------------------------------------------------------------------------------- /src/js/Options/options.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Options/options.css -------------------------------------------------------------------------------- /src/js/Options/options.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Options/options.ts -------------------------------------------------------------------------------- /src/js/Steam/holidayprofile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/Steam/holidayprofile.js -------------------------------------------------------------------------------- /src/js/bootstrapDomPurify.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/bootstrapDomPurify.ts -------------------------------------------------------------------------------- /src/js/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/config.ts -------------------------------------------------------------------------------- /src/js/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/js/global.d.ts -------------------------------------------------------------------------------- /src/localization/_contributors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/localization/_contributors.json -------------------------------------------------------------------------------- /src/localization/bg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/localization/bg.json -------------------------------------------------------------------------------- /src/localization/compiled/_strings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/localization/compiled/_strings.ts -------------------------------------------------------------------------------- /src/localization/compiled/bg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/localization/compiled/bg.json -------------------------------------------------------------------------------- /src/localization/compiled/cs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/localization/compiled/cs.json -------------------------------------------------------------------------------- /src/localization/compiled/da.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/localization/compiled/da.json -------------------------------------------------------------------------------- /src/localization/compiled/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/localization/compiled/de.json -------------------------------------------------------------------------------- /src/localization/compiled/el.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/localization/compiled/el.json -------------------------------------------------------------------------------- /src/localization/compiled/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/localization/compiled/en.json -------------------------------------------------------------------------------- /src/localization/compiled/es-419.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/localization/compiled/es-419.json -------------------------------------------------------------------------------- /src/localization/compiled/es-ES.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/localization/compiled/es-ES.json -------------------------------------------------------------------------------- /src/localization/compiled/fi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/localization/compiled/fi.json -------------------------------------------------------------------------------- /src/localization/compiled/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/localization/compiled/fr.json -------------------------------------------------------------------------------- /src/localization/compiled/hu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/localization/compiled/hu.json -------------------------------------------------------------------------------- /src/localization/compiled/id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/localization/compiled/id.json -------------------------------------------------------------------------------- /src/localization/compiled/it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/localization/compiled/it.json -------------------------------------------------------------------------------- /src/localization/compiled/ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/localization/compiled/ja.json -------------------------------------------------------------------------------- /src/localization/compiled/ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/localization/compiled/ko.json -------------------------------------------------------------------------------- /src/localization/compiled/nl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/localization/compiled/nl.json -------------------------------------------------------------------------------- /src/localization/compiled/no.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/localization/compiled/no.json -------------------------------------------------------------------------------- /src/localization/compiled/pl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/localization/compiled/pl.json -------------------------------------------------------------------------------- /src/localization/compiled/pt-BR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/localization/compiled/pt-BR.json -------------------------------------------------------------------------------- /src/localization/compiled/pt-PT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/localization/compiled/pt-PT.json -------------------------------------------------------------------------------- /src/localization/compiled/ro.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/localization/compiled/ro.json -------------------------------------------------------------------------------- /src/localization/compiled/ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/localization/compiled/ru.json -------------------------------------------------------------------------------- /src/localization/compiled/sv-SE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/localization/compiled/sv-SE.json -------------------------------------------------------------------------------- /src/localization/compiled/th.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/localization/compiled/th.json -------------------------------------------------------------------------------- /src/localization/compiled/tr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/localization/compiled/tr.json -------------------------------------------------------------------------------- /src/localization/compiled/ua.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/localization/compiled/ua.json -------------------------------------------------------------------------------- /src/localization/compiled/vi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/localization/compiled/vi.json -------------------------------------------------------------------------------- /src/localization/compiled/zh-CN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/localization/compiled/zh-CN.json -------------------------------------------------------------------------------- /src/localization/compiled/zh-TW.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/localization/compiled/zh-TW.json -------------------------------------------------------------------------------- /src/localization/cs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/localization/cs.json -------------------------------------------------------------------------------- /src/localization/da.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/localization/da.json -------------------------------------------------------------------------------- /src/localization/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/localization/de.json -------------------------------------------------------------------------------- /src/localization/el.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/localization/el.json -------------------------------------------------------------------------------- /src/localization/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/localization/en.json -------------------------------------------------------------------------------- /src/localization/es-419.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/localization/es-419.json -------------------------------------------------------------------------------- /src/localization/es-ES.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/localization/es-ES.json -------------------------------------------------------------------------------- /src/localization/fi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/localization/fi.json -------------------------------------------------------------------------------- /src/localization/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/localization/fr.json -------------------------------------------------------------------------------- /src/localization/hu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/localization/hu.json -------------------------------------------------------------------------------- /src/localization/id.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /src/localization/it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/localization/it.json -------------------------------------------------------------------------------- /src/localization/ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/localization/ja.json -------------------------------------------------------------------------------- /src/localization/ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/localization/ko.json -------------------------------------------------------------------------------- /src/localization/nl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/localization/nl.json -------------------------------------------------------------------------------- /src/localization/no.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/localization/no.json -------------------------------------------------------------------------------- /src/localization/pl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/localization/pl.json -------------------------------------------------------------------------------- /src/localization/pt-BR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/localization/pt-BR.json -------------------------------------------------------------------------------- /src/localization/pt-PT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/localization/pt-PT.json -------------------------------------------------------------------------------- /src/localization/ro.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/localization/ro.json -------------------------------------------------------------------------------- /src/localization/ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/localization/ru.json -------------------------------------------------------------------------------- /src/localization/sv-SE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/localization/sv-SE.json -------------------------------------------------------------------------------- /src/localization/th.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/localization/th.json -------------------------------------------------------------------------------- /src/localization/tr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/localization/tr.json -------------------------------------------------------------------------------- /src/localization/ua.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/localization/ua.json -------------------------------------------------------------------------------- /src/localization/vi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/localization/vi.json -------------------------------------------------------------------------------- /src/localization/zh-CN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/localization/zh-CN.json -------------------------------------------------------------------------------- /src/localization/zh-TW.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/localization/zh-TW.json -------------------------------------------------------------------------------- /src/scriptlets/Common/mediaExpander_app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/scriptlets/Common/mediaExpander_app.js -------------------------------------------------------------------------------- /src/scriptlets/Common/mediaExpander_workshop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/scriptlets/Common/mediaExpander_workshop.js -------------------------------------------------------------------------------- /src/scriptlets/Community/Badges/loadImages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/scriptlets/Community/Badges/loadImages.js -------------------------------------------------------------------------------- /src/scriptlets/Community/Badges/recalcLazyLoaderOffset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/scriptlets/Community/Badges/recalcLazyLoaderOffset.js -------------------------------------------------------------------------------- /src/scriptlets/Community/FriendsAndGroups/groupsManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/scriptlets/Community/FriendsAndGroups/groupsManager.js -------------------------------------------------------------------------------- /src/scriptlets/Community/FriendsAndGroups/inviteToGroup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/scriptlets/Community/FriendsAndGroups/inviteToGroup.js -------------------------------------------------------------------------------- /src/scriptlets/Community/FriendsAndGroups/inviteToGroupListener.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/scriptlets/Community/FriendsAndGroups/inviteToGroupListener.js -------------------------------------------------------------------------------- /src/scriptlets/Community/FriendsAndGroups/subpageNav.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/scriptlets/Community/FriendsAndGroups/subpageNav.js -------------------------------------------------------------------------------- /src/scriptlets/Community/Inventory/goToControls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/scriptlets/Community/Inventory/goToControls.js -------------------------------------------------------------------------------- /src/scriptlets/Community/Inventory/marketInfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/scriptlets/Community/Inventory/marketInfo.js -------------------------------------------------------------------------------- /src/scriptlets/Community/Inventory/oneClickGems.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/scriptlets/Community/Inventory/oneClickGems.js -------------------------------------------------------------------------------- /src/scriptlets/Community/Inventory/zoomYear.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/scriptlets/Community/Inventory/zoomYear.js -------------------------------------------------------------------------------- /src/scriptlets/Community/Inventory/zoomYearForSellDialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/scriptlets/Community/Inventory/zoomYearForSellDialog.js -------------------------------------------------------------------------------- /src/scriptlets/Community/ProfileActivity/patchBlotter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/scriptlets/Community/ProfileActivity/patchBlotter.js -------------------------------------------------------------------------------- /src/scriptlets/Community/ProfileHome/profileDropdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/scriptlets/Community/ProfileHome/profileDropdown.js -------------------------------------------------------------------------------- /src/scriptlets/Community/Workshop/changeTab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/scriptlets/Community/Workshop/changeTab.js -------------------------------------------------------------------------------- /src/scriptlets/Community/confirmDeleteComments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/scriptlets/Community/confirmDeleteComments.js -------------------------------------------------------------------------------- /src/scriptlets/DynamicStoreScriptlet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/scriptlets/DynamicStoreScriptlet.js -------------------------------------------------------------------------------- /src/scriptlets/SteamScriptlet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/scriptlets/SteamScriptlet.js -------------------------------------------------------------------------------- /src/scriptlets/Store/App/addItemToCart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/scriptlets/Store/App/addItemToCart.js -------------------------------------------------------------------------------- /src/scriptlets/Store/App/newQueue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/scriptlets/Store/App/newQueue.js -------------------------------------------------------------------------------- /src/scriptlets/Store/App/patchHighlightPlayer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/scriptlets/Store/App/patchHighlightPlayer.js -------------------------------------------------------------------------------- /src/scriptlets/Store/App/preventVideoPauseScriptlet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/scriptlets/Store/App/preventVideoPauseScriptlet.js -------------------------------------------------------------------------------- /src/scriptlets/Store/App/saveReviewFilters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/scriptlets/Store/App/saveReviewFilters.js -------------------------------------------------------------------------------- /src/scriptlets/Store/App/stopBroadcast.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/scriptlets/Store/App/stopBroadcast.js -------------------------------------------------------------------------------- /src/scriptlets/Store/App/triggerResize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/scriptlets/Store/App/triggerResize.js -------------------------------------------------------------------------------- /src/scriptlets/Store/App/wishlistHandlers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/scriptlets/Store/App/wishlistHandlers.js -------------------------------------------------------------------------------- /src/scriptlets/Store/Common/skipGotSteamDialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/scriptlets/Store/Common/skipGotSteamDialog.js -------------------------------------------------------------------------------- /src/scriptlets/Store/Common/storeFrontCustomizer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/scriptlets/Store/Common/storeFrontCustomizer.js -------------------------------------------------------------------------------- /src/scriptlets/Store/Search/addCollapseHandlers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/scriptlets/Store/Search/addCollapseHandlers.js -------------------------------------------------------------------------------- /src/scriptlets/Store/Search/executeSearchOverride.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/scriptlets/Store/Search/executeSearchOverride.js -------------------------------------------------------------------------------- /src/scriptlets/Store/Search/toQueryString.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/scriptlets/Store/Search/toQueryString.js -------------------------------------------------------------------------------- /src/scriptlets/Store/Search/updateUrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/scriptlets/Store/Search/updateUrl.js -------------------------------------------------------------------------------- /src/scriptlets/event.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/src/scriptlets/event.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsThereAnyDeal/AugmentedSteam/HEAD/tsconfig.json --------------------------------------------------------------------------------