├── .gitignore ├── Profile Folder └── chrome │ ├── frameworks │ └── zuneMetro │ │ ├── partials │ │ ├── controls │ │ │ ├── _input.scss │ │ │ ├── _preview.scss │ │ │ ├── _pages.scss │ │ │ ├── _colour.scss │ │ │ ├── _link.scss │ │ │ ├── _usertile.scss │ │ │ ├── _navbutton.scss │ │ │ ├── _checkbox.scss │ │ │ ├── _tabstrip.scss │ │ │ ├── _breadcrumbbar.scss │ │ │ ├── _tile.scss │ │ │ └── _button.scss │ │ └── frame │ │ │ └── _modal.scss │ │ ├── resources │ │ ├── correct.svg │ │ ├── checkboxTick.svg │ │ ├── minimise.svg │ │ ├── breadcrumb-arrow.svg │ │ ├── link.svg │ │ ├── close.svg │ │ ├── warning.svg │ │ ├── tabArrow.svg │ │ └── comboboxArrow.svg │ │ ├── scripts │ │ ├── frame.js │ │ ├── modal.js │ │ └── preview.js │ │ └── style.scss │ ├── pages │ ├── base.js │ ├── privateBrowsing │ │ └── resources │ │ │ ├── inprivate-9.png │ │ │ └── inprivate-9PreRelease.png │ ├── newTabHome │ │ ├── resources │ │ │ ├── delete.svg │ │ │ └── bing.svg │ │ └── scripts │ │ │ ├── search.js │ │ │ └── appearance.js │ ├── _base.scss │ └── scripts │ │ └── colours.js │ ├── jsonLocale │ ├── pt │ │ └── BR.json │ ├── ja │ │ └── fallback.json │ └── en │ │ └── US.json │ ├── images │ ├── shine.png │ ├── dropdown.png │ ├── statusGlobe.png │ ├── statusZoom.png │ ├── toolbarbutton-debug-states.png │ ├── toolbarbutton-blueIE10-states.png │ ├── toolbarbutton-blueIE9-states.png │ ├── toolbarbutton-greenIE9-states.png │ ├── toolbarbutton-greenIE10-states.png │ ├── toolbarbutton-smileyIE11-states.png │ ├── toolbarbutton-yellowIE10-states.png │ ├── toolbarbutton-yellowIE9-states.png │ ├── dropdown-mask.svg │ ├── nosearch-dropdown-mask.svg │ ├── bookmarks-more.svg │ ├── close-mask.svg │ ├── home-mask.svg │ ├── forward.svg │ ├── feedback-mask.svg │ ├── left.svg │ ├── right.svg │ ├── go-mask.svg │ ├── storedpage-mask.svg │ ├── find-close-mask.svg │ ├── favorites-mask.svg │ ├── stop-mask.svg │ ├── back.svg │ ├── feedback.svg │ ├── favorites.svg │ ├── downloads.svg │ ├── home.svg │ ├── downloads-mask.svg │ ├── refresh-mask.svg │ ├── search-dropdown-mask.svg │ ├── newtabhome-search-mask.svg │ ├── lock-mask.svg │ ├── search7777-dropdown-mask.svg │ ├── cert-error.svg │ ├── favicon_bing2013.svg │ ├── extensions.svg │ ├── containers.svg │ ├── extensions-mask.svg │ ├── back_disabled.svg │ ├── containers-mask.svg │ ├── clear.svg │ ├── settings-mask.svg │ ├── settings.svg │ └── forward_disabled.svg │ ├── partials │ ├── chrome │ │ ├── _devtools.scss │ │ ├── _app-menu.scss │ │ ├── _keyframes.scss │ │ └── _localisation.scss │ └── content │ │ └── _aboutpreferences.scss │ ├── resources │ ├── ieframe.dll.mui │ │ ├── 2110 │ │ │ └── IELOGO.png │ │ └── HTML │ │ │ ├── up.png │ │ │ ├── down.png │ │ │ ├── noConnect.png │ │ │ ├── green_shield.png │ │ │ └── red_shield_48.png │ ├── ieframe.dll │ │ ├── Bitmap │ │ │ ├── 624.png │ │ │ ├── 821.png │ │ │ ├── 697_30.png │ │ │ ├── 697-699_14.ico │ │ │ ├── 697-699_15.ico │ │ │ ├── 697-699_16.ico │ │ │ ├── 697-699_17.ico │ │ │ ├── 697-699_18.ico │ │ │ ├── 697-699_23.ico │ │ │ ├── 697-699_26.ico │ │ │ ├── 697-699_30.ico │ │ │ ├── 697-699_31.ico │ │ │ ├── 697-699_33.ico │ │ │ ├── 697-699_34.ico │ │ │ ├── 697-699_37.ico │ │ │ ├── 697-699_38.ico │ │ │ ├── 697-699_39.ico │ │ │ ├── 697-699_40.ico │ │ │ ├── 697-699_41.ico │ │ │ ├── 697-699_42.ico │ │ │ ├── 697-699_48.ico │ │ │ ├── 697-699_49.ico │ │ │ ├── 697-699_50.ico │ │ │ ├── 697-699_7.ico │ │ │ ├── 697-699_8.ico │ │ │ ├── TRAVEL_HOT_XP_01.png │ │ │ ├── TRAVEL_HOT_XP_02.png │ │ │ ├── TRAVEL_ENABLED_XP_01.png │ │ │ ├── TRAVEL_ENABLED_XP_02.png │ │ │ ├── TRAVEL_PRESSED_XP_01.png │ │ │ ├── TRAVEL_PRESSED_XP_02.png │ │ │ ├── TRAVEL_DISABLED_XP_01.png │ │ │ ├── TRAVEL_DISABLED_XP_02.png │ │ │ ├── TRAVEL_BACKGROUND_MINIE.png │ │ │ ├── TRAVEL_BACKGROUND_XP_01.png │ │ │ ├── TRAVEL_BACKGROUND_XP_02.png │ │ │ └── ADDRESS_XP-ADDRESS_XP_120_02.svg │ │ └── Icon Group │ │ │ ├── 100.ico │ │ │ ├── 110.ico │ │ │ ├── 113.ico │ │ │ ├── 190.ico │ │ │ ├── 13104.ico │ │ │ ├── 17363.ico │ │ │ ├── 17364.ico │ │ │ ├── 30788.ico │ │ │ ├── 31049.ico │ │ │ ├── 31056.ico │ │ │ ├── 31058.ico │ │ │ ├── 31062.ico │ │ │ ├── 31064.ico │ │ │ ├── 31065.ico │ │ │ ├── 31076.ico │ │ │ ├── 31087.ico │ │ │ └── 36870.ico │ ├── imageres.dll │ │ └── Icon Group │ │ │ ├── 51.ico │ │ │ └── 99.ico │ ├── iexplore.exe │ │ └── Icon Group │ │ │ └── 32553.ico │ ├── aero.msstyles │ │ ├── Buttons, Boxes & Controls │ │ │ └── Buttons │ │ │ │ ├── CommandLinkGlyph │ │ │ │ ├── Hot.ico │ │ │ │ └── Normal.ico │ │ │ │ └── Navigation │ │ │ │ └── BackButton │ │ │ │ ├── Hot.ico │ │ │ │ ├── Normal.ico │ │ │ │ ├── Disabled.ico │ │ │ │ └── Pressed.ico │ │ └── Toolbars, Headers & Rebar │ │ │ └── Toolbars & Headers │ │ │ └── Status │ │ │ └── Gripper │ │ │ └── BottomRight.ico │ ├── userChrome.au.scss │ └── userChrome.au.css │ ├── windows │ ├── options │ │ ├── resources │ │ │ ├── inetcpl.jpg │ │ │ ├── siterows.jpg │ │ │ ├── appearance.jpg │ │ │ ├── edgeButton.png │ │ │ ├── inori_wink.png │ │ │ ├── statusBar.jpg │ │ │ ├── defaultGroup.jpg │ │ │ ├── defaultUser.jpg │ │ │ ├── inori_angry.png │ │ │ ├── inori_crying.png │ │ │ ├── inori_excited.png │ │ │ ├── settingsicon.png │ │ │ ├── tabsOnNavRow.jpg │ │ │ ├── settingsInPopup.png │ │ │ ├── downloadProgress.png │ │ │ ├── extensionsButton.png │ │ │ ├── fakeInnerBorders.png │ │ │ ├── inori_protection.png │ │ │ ├── bookmarkItemTitleWidth.jpg │ │ │ ├── navigationButtonRadius.png │ │ │ ├── showFakeInternetLabel.jpg │ │ │ ├── customiseCommandBarItems.jpg │ │ │ └── fakeDropdownIconsInCommandBar.jpg │ │ └── scripts │ │ │ ├── preview.js │ │ │ └── ui.js │ ├── wizard │ │ ├── resources │ │ │ └── images │ │ │ │ ├── 7777.jpg │ │ │ │ ├── 7930.jpg │ │ │ │ ├── IE10.png │ │ │ │ ├── IE9.png │ │ │ │ ├── IE9PR.png │ │ │ │ ├── inori_hurray.png │ │ │ │ ├── close.svg │ │ │ │ ├── minimise.svg │ │ │ │ ├── nav-glyph.svg │ │ │ │ ├── commandlinkbutton-glyph.svg │ │ │ │ └── transform-arrow.svg │ │ └── scripts │ │ │ └── ui.js │ └── saveAs │ │ ├── scripts │ │ └── script.js │ │ ├── style.css │ │ └── style.scss │ ├── locale │ ├── ko │ │ ├── toolbars.dtd │ │ ├── save.dtd │ │ ├── about.dtd │ │ ├── newTabHome.dtd │ │ ├── dialogs.dtd │ │ ├── privateBrowsing.dtd │ │ └── wizard.dtd │ ├── id │ │ ├── toolbars.dtd │ │ ├── save.dtd │ │ ├── newTabHome.dtd │ │ ├── dialogs.dtd │ │ ├── about.dtd │ │ └── privateBrowsing.dtd │ ├── en-US │ │ ├── toolbars.dtd │ │ ├── save.dtd │ │ ├── newTabHome.dtd │ │ ├── dialogs.dtd │ │ ├── about.dtd │ │ └── privateBrowsing.dtd │ ├── ja │ │ ├── toolbars.dtd │ │ ├── save.dtd │ │ ├── newTabHome.dtd │ │ ├── dialogs.dtd │ │ ├── about.dtd │ │ └── privateBrowsing.dtd │ ├── en-GB │ │ ├── toolbars.dtd │ │ ├── save.dtd │ │ ├── newTabHome.dtd │ │ ├── dialogs.dtd │ │ ├── about.dtd │ │ └── privateBrowsing.dtd │ ├── es-ES │ │ ├── toolbars.dtd │ │ ├── save.dtd │ │ ├── newTabHome.dtd │ │ ├── dialogs.dtd │ │ ├── about.dtd │ │ └── privateBrowsing.dtd │ ├── pt-BR │ │ ├── toolbars.dtd │ │ ├── save.dtd │ │ ├── newTabHome.dtd │ │ ├── dialogs.dtd │ │ ├── about.dtd │ │ └── privateBrowsing.dtd │ ├── pt-PT │ │ ├── toolbars.dtd │ │ ├── save.dtd │ │ ├── newTabHome.dtd │ │ ├── dialogs.dtd │ │ ├── about.dtd │ │ └── privateBrowsing.dtd │ └── tr-TR │ │ ├── toolbars.dtd │ │ ├── save.dtd │ │ ├── newTabHome.dtd │ │ ├── dialogs.dtd │ │ ├── about.dtd │ │ └── privateBrowsing.dtd │ ├── userContent.scss │ ├── JS │ ├── BeautyFox_internetOptions.uc.js │ ├── BeautyFox_customWindow.uc.js │ ├── BeautyFox_downloadsButton.uc.js │ ├── BeautyFox_titlebar.uc.js │ ├── userChrome_ag_css.sys.mjs │ ├── BeautyFox_containerAppearance.uc.js │ ├── BeautyFox_favouritesSidebarButton.uc.js │ ├── BeautyFox_sendFeedbackButton.uc.js │ ├── BeautyFox_ntRun.uc.js │ ├── BeautyFox_fixCheckboxes.uc.js │ ├── userChrome_au_css.uc.js │ ├── BeautyFox_navRow.uc.js │ ├── BeautyFox_aboutDialog.uc.js │ ├── BeautyFox_bookmarksBar.uc.js │ ├── BeautyFox_downloadsWindow.uc.js │ ├── BeautyFox_FunctionsLoader.uc.js │ ├── BeautyFox_extensionsButton.uc.js │ ├── changeTitlebarText.uc.js │ └── BeautyFox_aboutPageReplacer.uc.js │ ├── temppages │ ├── discord-invite.html │ └── changelogs │ │ ├── ob-1.0.2.html │ │ ├── b4.2.1.html │ │ ├── style.scss │ │ ├── style.css │ │ ├── b4.5.8.html │ │ ├── b4.5.6.html │ │ ├── b4.5.7.html │ │ ├── b4.5.2.html │ │ ├── b4.5.3.html │ │ ├── rc1-1.0.html │ │ ├── b4.5.5.html │ │ ├── b4.5.10.html │ │ ├── b4.4.1.html │ │ ├── b4.1.1.html │ │ ├── b4.5.1.html │ │ ├── b4.4.3.html │ │ ├── rc3-1.0.1.html │ │ ├── rc3-1.0.2.html │ │ ├── b4.5.9.html │ │ ├── rc2-1.0.html │ │ ├── b4.4.2.html │ │ ├── style.css.map │ │ ├── b4.5.4.html │ │ ├── b4.2.html │ │ ├── b4.3.2.html │ │ ├── b4.3.1.html │ │ └── b4.3.html │ ├── userChrome.scss │ ├── styles │ ├── dialog.css │ ├── dialog.scss │ └── dialog.css.map │ └── utils │ └── chrome.manifest ├── Extensions ├── suggestedSites.xpi └── suggestedSites │ ├── _locales │ ├── en │ │ └── messages.json │ ├── es │ │ └── messages.json │ └── pt │ │ └── messages.json │ ├── suggestions.json │ ├── background.js │ ├── popup.css │ ├── manifest.json │ └── popup.html └── Firefox Folder ├── defaults └── pref │ └── config-prefs.js └── config.js /.gitignore: -------------------------------------------------------------------------------- 1 | desktop.ini 2 | .DS_Store -------------------------------------------------------------------------------- /Profile Folder/chrome/frameworks/zuneMetro/partials/controls/_input.scss: -------------------------------------------------------------------------------- 1 | input { 2 | margin: 0; 3 | } -------------------------------------------------------------------------------- /Profile Folder/chrome/pages/base.js: -------------------------------------------------------------------------------- 1 | document.documentElement.setAttribute("lang", navigator.language); -------------------------------------------------------------------------------- /Profile Folder/chrome/jsonLocale/pt/BR.json: -------------------------------------------------------------------------------- 1 | { 2 | "File": "Arquivo", 3 | "SaveAs": "Salvar como..." 4 | } -------------------------------------------------------------------------------- /Extensions/suggestedSites.xpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominichayesferen/BeautyFox/HEAD/Extensions/suggestedSites.xpi -------------------------------------------------------------------------------- /Profile Folder/chrome/jsonLocale/ja/fallback.json: -------------------------------------------------------------------------------- 1 | { 2 | "Page": "ページ", 3 | "Safety": "セーフティ", 4 | "Tools": "ツール" 5 | } -------------------------------------------------------------------------------- /Extensions/suggestedSites/_locales/en/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "extensionName": { 3 | "message": "Suggested Sites" 4 | } 5 | } -------------------------------------------------------------------------------- /Extensions/suggestedSites/_locales/es/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "extensionName": { 3 | "message": "Sitios sugeridos" 4 | } 5 | } -------------------------------------------------------------------------------- /Extensions/suggestedSites/_locales/pt/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "extensionName": { 3 | "message": "Sites Sugeridos" 4 | } 5 | } -------------------------------------------------------------------------------- /Profile Folder/chrome/images/shine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominichayesferen/BeautyFox/HEAD/Profile Folder/chrome/images/shine.png -------------------------------------------------------------------------------- /Profile Folder/chrome/images/dropdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominichayesferen/BeautyFox/HEAD/Profile Folder/chrome/images/dropdown.png -------------------------------------------------------------------------------- /Profile Folder/chrome/partials/chrome/_devtools.scss: -------------------------------------------------------------------------------- 1 | .devtools-horizontal-splitter { 2 | background-color: rgb(163,167,172) !important; 3 | } -------------------------------------------------------------------------------- /Profile Folder/chrome/images/statusGlobe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominichayesferen/BeautyFox/HEAD/Profile Folder/chrome/images/statusGlobe.png -------------------------------------------------------------------------------- /Profile Folder/chrome/images/statusZoom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominichayesferen/BeautyFox/HEAD/Profile Folder/chrome/images/statusZoom.png -------------------------------------------------------------------------------- /Profile Folder/chrome/jsonLocale/en/US.json: -------------------------------------------------------------------------------- 1 | { 2 | "FavouritesBar": "Favorites bar", 3 | "Favourites": "Favorites", 4 | 5 | "Customise": "Customize" 6 | } -------------------------------------------------------------------------------- /Profile Folder/chrome/images/toolbarbutton-debug-states.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominichayesferen/BeautyFox/HEAD/Profile Folder/chrome/images/toolbarbutton-debug-states.png -------------------------------------------------------------------------------- /Profile Folder/chrome/resources/ieframe.dll.mui/HTML/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominichayesferen/BeautyFox/HEAD/Profile Folder/chrome/resources/ieframe.dll.mui/HTML/up.png -------------------------------------------------------------------------------- /Profile Folder/chrome/resources/ieframe.dll/Bitmap/624.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominichayesferen/BeautyFox/HEAD/Profile Folder/chrome/resources/ieframe.dll/Bitmap/624.png -------------------------------------------------------------------------------- /Profile Folder/chrome/resources/ieframe.dll/Bitmap/821.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominichayesferen/BeautyFox/HEAD/Profile Folder/chrome/resources/ieframe.dll/Bitmap/821.png -------------------------------------------------------------------------------- /Profile Folder/chrome/windows/options/resources/inetcpl.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominichayesferen/BeautyFox/HEAD/Profile Folder/chrome/windows/options/resources/inetcpl.jpg -------------------------------------------------------------------------------- /Profile Folder/chrome/windows/options/resources/siterows.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominichayesferen/BeautyFox/HEAD/Profile Folder/chrome/windows/options/resources/siterows.jpg -------------------------------------------------------------------------------- /Profile Folder/chrome/images/toolbarbutton-blueIE10-states.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominichayesferen/BeautyFox/HEAD/Profile Folder/chrome/images/toolbarbutton-blueIE10-states.png -------------------------------------------------------------------------------- /Profile Folder/chrome/images/toolbarbutton-blueIE9-states.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominichayesferen/BeautyFox/HEAD/Profile Folder/chrome/images/toolbarbutton-blueIE9-states.png -------------------------------------------------------------------------------- /Profile Folder/chrome/images/toolbarbutton-greenIE9-states.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominichayesferen/BeautyFox/HEAD/Profile Folder/chrome/images/toolbarbutton-greenIE9-states.png -------------------------------------------------------------------------------- /Profile Folder/chrome/resources/ieframe.dll.mui/HTML/down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominichayesferen/BeautyFox/HEAD/Profile Folder/chrome/resources/ieframe.dll.mui/HTML/down.png -------------------------------------------------------------------------------- /Profile Folder/chrome/resources/ieframe.dll/Bitmap/697_30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominichayesferen/BeautyFox/HEAD/Profile Folder/chrome/resources/ieframe.dll/Bitmap/697_30.png -------------------------------------------------------------------------------- /Profile Folder/chrome/resources/ieframe.dll/Icon Group/100.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominichayesferen/BeautyFox/HEAD/Profile Folder/chrome/resources/ieframe.dll/Icon Group/100.ico -------------------------------------------------------------------------------- /Profile Folder/chrome/resources/ieframe.dll/Icon Group/110.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominichayesferen/BeautyFox/HEAD/Profile Folder/chrome/resources/ieframe.dll/Icon Group/110.ico -------------------------------------------------------------------------------- /Profile Folder/chrome/resources/ieframe.dll/Icon Group/113.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominichayesferen/BeautyFox/HEAD/Profile Folder/chrome/resources/ieframe.dll/Icon Group/113.ico -------------------------------------------------------------------------------- /Profile Folder/chrome/resources/ieframe.dll/Icon Group/190.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominichayesferen/BeautyFox/HEAD/Profile Folder/chrome/resources/ieframe.dll/Icon Group/190.ico -------------------------------------------------------------------------------- /Profile Folder/chrome/resources/imageres.dll/Icon Group/51.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominichayesferen/BeautyFox/HEAD/Profile Folder/chrome/resources/imageres.dll/Icon Group/51.ico -------------------------------------------------------------------------------- /Profile Folder/chrome/resources/imageres.dll/Icon Group/99.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominichayesferen/BeautyFox/HEAD/Profile Folder/chrome/resources/imageres.dll/Icon Group/99.ico -------------------------------------------------------------------------------- /Profile Folder/chrome/windows/options/resources/appearance.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominichayesferen/BeautyFox/HEAD/Profile Folder/chrome/windows/options/resources/appearance.jpg -------------------------------------------------------------------------------- /Profile Folder/chrome/windows/options/resources/edgeButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominichayesferen/BeautyFox/HEAD/Profile Folder/chrome/windows/options/resources/edgeButton.png -------------------------------------------------------------------------------- /Profile Folder/chrome/windows/options/resources/inori_wink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominichayesferen/BeautyFox/HEAD/Profile Folder/chrome/windows/options/resources/inori_wink.png -------------------------------------------------------------------------------- /Profile Folder/chrome/windows/options/resources/statusBar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominichayesferen/BeautyFox/HEAD/Profile Folder/chrome/windows/options/resources/statusBar.jpg -------------------------------------------------------------------------------- /Profile Folder/chrome/windows/wizard/resources/images/7777.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominichayesferen/BeautyFox/HEAD/Profile Folder/chrome/windows/wizard/resources/images/7777.jpg -------------------------------------------------------------------------------- /Profile Folder/chrome/windows/wizard/resources/images/7930.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominichayesferen/BeautyFox/HEAD/Profile Folder/chrome/windows/wizard/resources/images/7930.jpg -------------------------------------------------------------------------------- /Profile Folder/chrome/windows/wizard/resources/images/IE10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominichayesferen/BeautyFox/HEAD/Profile Folder/chrome/windows/wizard/resources/images/IE10.png -------------------------------------------------------------------------------- /Profile Folder/chrome/windows/wizard/resources/images/IE9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominichayesferen/BeautyFox/HEAD/Profile Folder/chrome/windows/wizard/resources/images/IE9.png -------------------------------------------------------------------------------- /Profile Folder/chrome/images/toolbarbutton-greenIE10-states.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominichayesferen/BeautyFox/HEAD/Profile Folder/chrome/images/toolbarbutton-greenIE10-states.png -------------------------------------------------------------------------------- /Profile Folder/chrome/images/toolbarbutton-smileyIE11-states.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominichayesferen/BeautyFox/HEAD/Profile Folder/chrome/images/toolbarbutton-smileyIE11-states.png -------------------------------------------------------------------------------- /Profile Folder/chrome/images/toolbarbutton-yellowIE10-states.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominichayesferen/BeautyFox/HEAD/Profile Folder/chrome/images/toolbarbutton-yellowIE10-states.png -------------------------------------------------------------------------------- /Profile Folder/chrome/images/toolbarbutton-yellowIE9-states.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominichayesferen/BeautyFox/HEAD/Profile Folder/chrome/images/toolbarbutton-yellowIE9-states.png -------------------------------------------------------------------------------- /Profile Folder/chrome/resources/ieframe.dll.mui/2110/IELOGO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominichayesferen/BeautyFox/HEAD/Profile Folder/chrome/resources/ieframe.dll.mui/2110/IELOGO.png -------------------------------------------------------------------------------- /Profile Folder/chrome/resources/ieframe.dll/Bitmap/697-699_14.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominichayesferen/BeautyFox/HEAD/Profile Folder/chrome/resources/ieframe.dll/Bitmap/697-699_14.ico -------------------------------------------------------------------------------- /Profile Folder/chrome/resources/ieframe.dll/Bitmap/697-699_15.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominichayesferen/BeautyFox/HEAD/Profile Folder/chrome/resources/ieframe.dll/Bitmap/697-699_15.ico -------------------------------------------------------------------------------- /Profile Folder/chrome/resources/ieframe.dll/Bitmap/697-699_16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominichayesferen/BeautyFox/HEAD/Profile Folder/chrome/resources/ieframe.dll/Bitmap/697-699_16.ico -------------------------------------------------------------------------------- /Profile Folder/chrome/resources/ieframe.dll/Bitmap/697-699_17.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominichayesferen/BeautyFox/HEAD/Profile Folder/chrome/resources/ieframe.dll/Bitmap/697-699_17.ico -------------------------------------------------------------------------------- /Profile Folder/chrome/resources/ieframe.dll/Bitmap/697-699_18.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominichayesferen/BeautyFox/HEAD/Profile Folder/chrome/resources/ieframe.dll/Bitmap/697-699_18.ico -------------------------------------------------------------------------------- /Profile Folder/chrome/resources/ieframe.dll/Bitmap/697-699_23.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominichayesferen/BeautyFox/HEAD/Profile Folder/chrome/resources/ieframe.dll/Bitmap/697-699_23.ico -------------------------------------------------------------------------------- /Profile Folder/chrome/resources/ieframe.dll/Bitmap/697-699_26.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominichayesferen/BeautyFox/HEAD/Profile Folder/chrome/resources/ieframe.dll/Bitmap/697-699_26.ico -------------------------------------------------------------------------------- /Profile Folder/chrome/resources/ieframe.dll/Bitmap/697-699_30.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominichayesferen/BeautyFox/HEAD/Profile Folder/chrome/resources/ieframe.dll/Bitmap/697-699_30.ico -------------------------------------------------------------------------------- /Profile Folder/chrome/resources/ieframe.dll/Bitmap/697-699_31.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominichayesferen/BeautyFox/HEAD/Profile Folder/chrome/resources/ieframe.dll/Bitmap/697-699_31.ico -------------------------------------------------------------------------------- /Profile Folder/chrome/resources/ieframe.dll/Bitmap/697-699_33.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominichayesferen/BeautyFox/HEAD/Profile Folder/chrome/resources/ieframe.dll/Bitmap/697-699_33.ico -------------------------------------------------------------------------------- /Profile Folder/chrome/resources/ieframe.dll/Bitmap/697-699_34.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominichayesferen/BeautyFox/HEAD/Profile Folder/chrome/resources/ieframe.dll/Bitmap/697-699_34.ico -------------------------------------------------------------------------------- /Profile Folder/chrome/resources/ieframe.dll/Bitmap/697-699_37.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominichayesferen/BeautyFox/HEAD/Profile Folder/chrome/resources/ieframe.dll/Bitmap/697-699_37.ico -------------------------------------------------------------------------------- /Profile Folder/chrome/resources/ieframe.dll/Bitmap/697-699_38.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominichayesferen/BeautyFox/HEAD/Profile Folder/chrome/resources/ieframe.dll/Bitmap/697-699_38.ico -------------------------------------------------------------------------------- /Profile Folder/chrome/resources/ieframe.dll/Bitmap/697-699_39.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominichayesferen/BeautyFox/HEAD/Profile Folder/chrome/resources/ieframe.dll/Bitmap/697-699_39.ico -------------------------------------------------------------------------------- /Profile Folder/chrome/resources/ieframe.dll/Bitmap/697-699_40.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominichayesferen/BeautyFox/HEAD/Profile Folder/chrome/resources/ieframe.dll/Bitmap/697-699_40.ico -------------------------------------------------------------------------------- /Profile Folder/chrome/resources/ieframe.dll/Bitmap/697-699_41.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominichayesferen/BeautyFox/HEAD/Profile Folder/chrome/resources/ieframe.dll/Bitmap/697-699_41.ico -------------------------------------------------------------------------------- /Profile Folder/chrome/resources/ieframe.dll/Bitmap/697-699_42.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominichayesferen/BeautyFox/HEAD/Profile Folder/chrome/resources/ieframe.dll/Bitmap/697-699_42.ico -------------------------------------------------------------------------------- /Profile Folder/chrome/resources/ieframe.dll/Bitmap/697-699_48.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominichayesferen/BeautyFox/HEAD/Profile Folder/chrome/resources/ieframe.dll/Bitmap/697-699_48.ico -------------------------------------------------------------------------------- /Profile Folder/chrome/resources/ieframe.dll/Bitmap/697-699_49.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominichayesferen/BeautyFox/HEAD/Profile Folder/chrome/resources/ieframe.dll/Bitmap/697-699_49.ico -------------------------------------------------------------------------------- /Profile Folder/chrome/resources/ieframe.dll/Bitmap/697-699_50.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominichayesferen/BeautyFox/HEAD/Profile Folder/chrome/resources/ieframe.dll/Bitmap/697-699_50.ico -------------------------------------------------------------------------------- /Profile Folder/chrome/resources/ieframe.dll/Bitmap/697-699_7.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominichayesferen/BeautyFox/HEAD/Profile Folder/chrome/resources/ieframe.dll/Bitmap/697-699_7.ico -------------------------------------------------------------------------------- /Profile Folder/chrome/resources/ieframe.dll/Bitmap/697-699_8.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominichayesferen/BeautyFox/HEAD/Profile Folder/chrome/resources/ieframe.dll/Bitmap/697-699_8.ico -------------------------------------------------------------------------------- /Profile Folder/chrome/resources/ieframe.dll/Icon Group/13104.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominichayesferen/BeautyFox/HEAD/Profile Folder/chrome/resources/ieframe.dll/Icon Group/13104.ico -------------------------------------------------------------------------------- /Profile Folder/chrome/resources/ieframe.dll/Icon Group/17363.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominichayesferen/BeautyFox/HEAD/Profile Folder/chrome/resources/ieframe.dll/Icon Group/17363.ico -------------------------------------------------------------------------------- /Profile Folder/chrome/resources/ieframe.dll/Icon Group/17364.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominichayesferen/BeautyFox/HEAD/Profile Folder/chrome/resources/ieframe.dll/Icon Group/17364.ico -------------------------------------------------------------------------------- /Profile Folder/chrome/resources/ieframe.dll/Icon Group/30788.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominichayesferen/BeautyFox/HEAD/Profile Folder/chrome/resources/ieframe.dll/Icon Group/30788.ico -------------------------------------------------------------------------------- /Profile Folder/chrome/resources/ieframe.dll/Icon Group/31049.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominichayesferen/BeautyFox/HEAD/Profile Folder/chrome/resources/ieframe.dll/Icon Group/31049.ico -------------------------------------------------------------------------------- /Profile Folder/chrome/resources/ieframe.dll/Icon Group/31056.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominichayesferen/BeautyFox/HEAD/Profile Folder/chrome/resources/ieframe.dll/Icon Group/31056.ico -------------------------------------------------------------------------------- /Profile Folder/chrome/resources/ieframe.dll/Icon Group/31058.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominichayesferen/BeautyFox/HEAD/Profile Folder/chrome/resources/ieframe.dll/Icon Group/31058.ico -------------------------------------------------------------------------------- /Profile Folder/chrome/resources/ieframe.dll/Icon Group/31062.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominichayesferen/BeautyFox/HEAD/Profile Folder/chrome/resources/ieframe.dll/Icon Group/31062.ico -------------------------------------------------------------------------------- /Profile Folder/chrome/resources/ieframe.dll/Icon Group/31064.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominichayesferen/BeautyFox/HEAD/Profile Folder/chrome/resources/ieframe.dll/Icon Group/31064.ico -------------------------------------------------------------------------------- /Profile Folder/chrome/resources/ieframe.dll/Icon Group/31065.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominichayesferen/BeautyFox/HEAD/Profile Folder/chrome/resources/ieframe.dll/Icon Group/31065.ico -------------------------------------------------------------------------------- /Profile Folder/chrome/resources/ieframe.dll/Icon Group/31076.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominichayesferen/BeautyFox/HEAD/Profile Folder/chrome/resources/ieframe.dll/Icon Group/31076.ico -------------------------------------------------------------------------------- /Profile Folder/chrome/resources/ieframe.dll/Icon Group/31087.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominichayesferen/BeautyFox/HEAD/Profile Folder/chrome/resources/ieframe.dll/Icon Group/31087.ico -------------------------------------------------------------------------------- /Profile Folder/chrome/resources/ieframe.dll/Icon Group/36870.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominichayesferen/BeautyFox/HEAD/Profile Folder/chrome/resources/ieframe.dll/Icon Group/36870.ico -------------------------------------------------------------------------------- /Profile Folder/chrome/resources/iexplore.exe/Icon Group/32553.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominichayesferen/BeautyFox/HEAD/Profile Folder/chrome/resources/iexplore.exe/Icon Group/32553.ico -------------------------------------------------------------------------------- /Profile Folder/chrome/windows/options/resources/defaultGroup.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominichayesferen/BeautyFox/HEAD/Profile Folder/chrome/windows/options/resources/defaultGroup.jpg -------------------------------------------------------------------------------- /Profile Folder/chrome/windows/options/resources/defaultUser.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominichayesferen/BeautyFox/HEAD/Profile Folder/chrome/windows/options/resources/defaultUser.jpg -------------------------------------------------------------------------------- /Profile Folder/chrome/windows/options/resources/inori_angry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominichayesferen/BeautyFox/HEAD/Profile Folder/chrome/windows/options/resources/inori_angry.png -------------------------------------------------------------------------------- /Profile Folder/chrome/windows/options/resources/inori_crying.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominichayesferen/BeautyFox/HEAD/Profile Folder/chrome/windows/options/resources/inori_crying.png -------------------------------------------------------------------------------- /Profile Folder/chrome/windows/options/resources/inori_excited.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominichayesferen/BeautyFox/HEAD/Profile Folder/chrome/windows/options/resources/inori_excited.png -------------------------------------------------------------------------------- /Profile Folder/chrome/windows/options/resources/settingsicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominichayesferen/BeautyFox/HEAD/Profile Folder/chrome/windows/options/resources/settingsicon.png -------------------------------------------------------------------------------- /Profile Folder/chrome/windows/options/resources/tabsOnNavRow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominichayesferen/BeautyFox/HEAD/Profile Folder/chrome/windows/options/resources/tabsOnNavRow.jpg -------------------------------------------------------------------------------- /Profile Folder/chrome/windows/wizard/resources/images/IE9PR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominichayesferen/BeautyFox/HEAD/Profile Folder/chrome/windows/wizard/resources/images/IE9PR.png -------------------------------------------------------------------------------- /Profile Folder/chrome/resources/ieframe.dll.mui/HTML/noConnect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominichayesferen/BeautyFox/HEAD/Profile Folder/chrome/resources/ieframe.dll.mui/HTML/noConnect.png -------------------------------------------------------------------------------- /Profile Folder/chrome/windows/options/resources/settingsInPopup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominichayesferen/BeautyFox/HEAD/Profile Folder/chrome/windows/options/resources/settingsInPopup.png -------------------------------------------------------------------------------- /Profile Folder/chrome/pages/privateBrowsing/resources/inprivate-9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominichayesferen/BeautyFox/HEAD/Profile Folder/chrome/pages/privateBrowsing/resources/inprivate-9.png -------------------------------------------------------------------------------- /Profile Folder/chrome/resources/ieframe.dll.mui/HTML/green_shield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominichayesferen/BeautyFox/HEAD/Profile Folder/chrome/resources/ieframe.dll.mui/HTML/green_shield.png -------------------------------------------------------------------------------- /Profile Folder/chrome/resources/ieframe.dll.mui/HTML/red_shield_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominichayesferen/BeautyFox/HEAD/Profile Folder/chrome/resources/ieframe.dll.mui/HTML/red_shield_48.png -------------------------------------------------------------------------------- /Profile Folder/chrome/windows/options/resources/downloadProgress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominichayesferen/BeautyFox/HEAD/Profile Folder/chrome/windows/options/resources/downloadProgress.png -------------------------------------------------------------------------------- /Profile Folder/chrome/windows/options/resources/extensionsButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominichayesferen/BeautyFox/HEAD/Profile Folder/chrome/windows/options/resources/extensionsButton.png -------------------------------------------------------------------------------- /Profile Folder/chrome/windows/options/resources/fakeInnerBorders.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominichayesferen/BeautyFox/HEAD/Profile Folder/chrome/windows/options/resources/fakeInnerBorders.png -------------------------------------------------------------------------------- /Profile Folder/chrome/windows/options/resources/inori_protection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominichayesferen/BeautyFox/HEAD/Profile Folder/chrome/windows/options/resources/inori_protection.png -------------------------------------------------------------------------------- /Profile Folder/chrome/windows/wizard/resources/images/inori_hurray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominichayesferen/BeautyFox/HEAD/Profile Folder/chrome/windows/wizard/resources/images/inori_hurray.png -------------------------------------------------------------------------------- /Profile Folder/chrome/images/dropdown-mask.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Profile Folder/chrome/resources/ieframe.dll/Bitmap/TRAVEL_HOT_XP_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominichayesferen/BeautyFox/HEAD/Profile Folder/chrome/resources/ieframe.dll/Bitmap/TRAVEL_HOT_XP_01.png -------------------------------------------------------------------------------- /Profile Folder/chrome/resources/ieframe.dll/Bitmap/TRAVEL_HOT_XP_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominichayesferen/BeautyFox/HEAD/Profile Folder/chrome/resources/ieframe.dll/Bitmap/TRAVEL_HOT_XP_02.png -------------------------------------------------------------------------------- /Profile Folder/chrome/resources/ieframe.dll/Bitmap/TRAVEL_ENABLED_XP_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominichayesferen/BeautyFox/HEAD/Profile Folder/chrome/resources/ieframe.dll/Bitmap/TRAVEL_ENABLED_XP_01.png -------------------------------------------------------------------------------- /Profile Folder/chrome/resources/ieframe.dll/Bitmap/TRAVEL_ENABLED_XP_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominichayesferen/BeautyFox/HEAD/Profile Folder/chrome/resources/ieframe.dll/Bitmap/TRAVEL_ENABLED_XP_02.png -------------------------------------------------------------------------------- /Profile Folder/chrome/resources/ieframe.dll/Bitmap/TRAVEL_PRESSED_XP_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominichayesferen/BeautyFox/HEAD/Profile Folder/chrome/resources/ieframe.dll/Bitmap/TRAVEL_PRESSED_XP_01.png -------------------------------------------------------------------------------- /Profile Folder/chrome/resources/ieframe.dll/Bitmap/TRAVEL_PRESSED_XP_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominichayesferen/BeautyFox/HEAD/Profile Folder/chrome/resources/ieframe.dll/Bitmap/TRAVEL_PRESSED_XP_02.png -------------------------------------------------------------------------------- /Profile Folder/chrome/windows/options/resources/bookmarkItemTitleWidth.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominichayesferen/BeautyFox/HEAD/Profile Folder/chrome/windows/options/resources/bookmarkItemTitleWidth.jpg -------------------------------------------------------------------------------- /Profile Folder/chrome/windows/options/resources/navigationButtonRadius.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominichayesferen/BeautyFox/HEAD/Profile Folder/chrome/windows/options/resources/navigationButtonRadius.png -------------------------------------------------------------------------------- /Profile Folder/chrome/windows/options/resources/showFakeInternetLabel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominichayesferen/BeautyFox/HEAD/Profile Folder/chrome/windows/options/resources/showFakeInternetLabel.jpg -------------------------------------------------------------------------------- /Profile Folder/chrome/resources/ieframe.dll/Bitmap/TRAVEL_DISABLED_XP_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominichayesferen/BeautyFox/HEAD/Profile Folder/chrome/resources/ieframe.dll/Bitmap/TRAVEL_DISABLED_XP_01.png -------------------------------------------------------------------------------- /Profile Folder/chrome/resources/ieframe.dll/Bitmap/TRAVEL_DISABLED_XP_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominichayesferen/BeautyFox/HEAD/Profile Folder/chrome/resources/ieframe.dll/Bitmap/TRAVEL_DISABLED_XP_02.png -------------------------------------------------------------------------------- /Profile Folder/chrome/windows/options/resources/customiseCommandBarItems.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominichayesferen/BeautyFox/HEAD/Profile Folder/chrome/windows/options/resources/customiseCommandBarItems.jpg -------------------------------------------------------------------------------- /Profile Folder/chrome/images/nosearch-dropdown-mask.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Profile Folder/chrome/pages/privateBrowsing/resources/inprivate-9PreRelease.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominichayesferen/BeautyFox/HEAD/Profile Folder/chrome/pages/privateBrowsing/resources/inprivate-9PreRelease.png -------------------------------------------------------------------------------- /Profile Folder/chrome/resources/ieframe.dll/Bitmap/TRAVEL_BACKGROUND_MINIE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominichayesferen/BeautyFox/HEAD/Profile Folder/chrome/resources/ieframe.dll/Bitmap/TRAVEL_BACKGROUND_MINIE.png -------------------------------------------------------------------------------- /Profile Folder/chrome/resources/ieframe.dll/Bitmap/TRAVEL_BACKGROUND_XP_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominichayesferen/BeautyFox/HEAD/Profile Folder/chrome/resources/ieframe.dll/Bitmap/TRAVEL_BACKGROUND_XP_01.png -------------------------------------------------------------------------------- /Profile Folder/chrome/resources/ieframe.dll/Bitmap/TRAVEL_BACKGROUND_XP_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominichayesferen/BeautyFox/HEAD/Profile Folder/chrome/resources/ieframe.dll/Bitmap/TRAVEL_BACKGROUND_XP_02.png -------------------------------------------------------------------------------- /Profile Folder/chrome/windows/options/resources/fakeDropdownIconsInCommandBar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominichayesferen/BeautyFox/HEAD/Profile Folder/chrome/windows/options/resources/fakeDropdownIconsInCommandBar.jpg -------------------------------------------------------------------------------- /Profile Folder/chrome/locale/ko/toolbars.dtd: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /Profile Folder/chrome/frameworks/zuneMetro/resources/correct.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Profile Folder/chrome/windows/wizard/resources/images/close.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Firefox Folder/defaults/pref/config-prefs.js: -------------------------------------------------------------------------------- 1 | pref("general.config.obscure_value", 0); 2 | pref("general.config.filename", "config.js"); 3 | // Sandbox needs to be disabled in release and Beta versions 4 | pref("general.config.sandbox_enabled", false); -------------------------------------------------------------------------------- /Profile Folder/chrome/frameworks/zuneMetro/resources/checkboxTick.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /Profile Folder/chrome/frameworks/zuneMetro/resources/minimise.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Profile Folder/chrome/locale/id/toolbars.dtd: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /Profile Folder/chrome/userContent.scss: -------------------------------------------------------------------------------- 1 | // TODO: Theme about: pages. 2 | 3 | @import 'partials/content/aboutneterror'; 4 | @import 'partials/content/aboutcerterror'; 5 | 6 | @import 'partials/content/aboutpreferences'; 7 | 8 | @import 'partials/content/devtools'; -------------------------------------------------------------------------------- /Profile Folder/chrome/locale/en-US/toolbars.dtd: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /Profile Folder/chrome/locale/ja/toolbars.dtd: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /Profile Folder/chrome/resources/aero.msstyles/Buttons, Boxes & Controls/Buttons/CommandLinkGlyph/Hot.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominichayesferen/BeautyFox/HEAD/Profile Folder/chrome/resources/aero.msstyles/Buttons, Boxes & Controls/Buttons/CommandLinkGlyph/Hot.ico -------------------------------------------------------------------------------- /Profile Folder/chrome/locale/en-GB/toolbars.dtd: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /Profile Folder/chrome/resources/aero.msstyles/Buttons, Boxes & Controls/Buttons/CommandLinkGlyph/Normal.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominichayesferen/BeautyFox/HEAD/Profile Folder/chrome/resources/aero.msstyles/Buttons, Boxes & Controls/Buttons/CommandLinkGlyph/Normal.ico -------------------------------------------------------------------------------- /Profile Folder/chrome/frameworks/zuneMetro/partials/controls/_preview.scss: -------------------------------------------------------------------------------- 1 | #previewContainer { 2 | min-width: 380px; 3 | max-width: 380px; 4 | border-left: 1px solid lightgray; 5 | padding-left: 43px; 6 | margin-left: 43px; 7 | transition: opacity .3s, margin-right .3s; 8 | } -------------------------------------------------------------------------------- /Profile Folder/chrome/resources/aero.msstyles/Buttons, Boxes & Controls/Buttons/Navigation/BackButton/Hot.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominichayesferen/BeautyFox/HEAD/Profile Folder/chrome/resources/aero.msstyles/Buttons, Boxes & Controls/Buttons/Navigation/BackButton/Hot.ico -------------------------------------------------------------------------------- /Profile Folder/chrome/locale/es-ES/toolbars.dtd: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /Profile Folder/chrome/resources/aero.msstyles/Buttons, Boxes & Controls/Buttons/Navigation/BackButton/Normal.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominichayesferen/BeautyFox/HEAD/Profile Folder/chrome/resources/aero.msstyles/Buttons, Boxes & Controls/Buttons/Navigation/BackButton/Normal.ico -------------------------------------------------------------------------------- /Profile Folder/chrome/locale/pt-BR/toolbars.dtd: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /Profile Folder/chrome/locale/pt-PT/toolbars.dtd: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /Profile Folder/chrome/locale/tr-TR/toolbars.dtd: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /Profile Folder/chrome/resources/aero.msstyles/Buttons, Boxes & Controls/Buttons/Navigation/BackButton/Disabled.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominichayesferen/BeautyFox/HEAD/Profile Folder/chrome/resources/aero.msstyles/Buttons, Boxes & Controls/Buttons/Navigation/BackButton/Disabled.ico -------------------------------------------------------------------------------- /Profile Folder/chrome/resources/aero.msstyles/Buttons, Boxes & Controls/Buttons/Navigation/BackButton/Pressed.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominichayesferen/BeautyFox/HEAD/Profile Folder/chrome/resources/aero.msstyles/Buttons, Boxes & Controls/Buttons/Navigation/BackButton/Pressed.ico -------------------------------------------------------------------------------- /Profile Folder/chrome/frameworks/zuneMetro/resources/breadcrumb-arrow.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Profile Folder/chrome/images/bookmarks-more.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /Profile Folder/chrome/resources/aero.msstyles/Toolbars, Headers & Rebar/Toolbars & Headers/Status/Gripper/BottomRight.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominichayesferen/BeautyFox/HEAD/Profile Folder/chrome/resources/aero.msstyles/Toolbars, Headers & Rebar/Toolbars & Headers/Status/Gripper/BottomRight.ico -------------------------------------------------------------------------------- /Profile Folder/chrome/images/close-mask.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Profile Folder/chrome/images/home-mask.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Profile Folder/chrome/frameworks/zuneMetro/scripts/frame.js: -------------------------------------------------------------------------------- 1 | document.documentElement.setAttribute("lang", navigator.language); 2 | 3 | function zuneClose() { 4 | document.getElementById("windowAnimation").classList.add("windowClose"); 5 | 6 | setTimeout(() => { 7 | window.close() 8 | }, 450); 9 | } -------------------------------------------------------------------------------- /Profile Folder/chrome/images/forward.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Profile Folder/chrome/images/feedback-mask.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Profile Folder/chrome/images/left.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Profile Folder/chrome/images/right.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Profile Folder/chrome/partials/chrome/_app-menu.scss: -------------------------------------------------------------------------------- 1 | :root { 2 | --panel-subview-body-padding: 0 !important; 3 | --arrowpanel-border-radius: 0 !important; 4 | --arrowpanel-menuitem-padding: 0 !important; 5 | --arrowpanel-menuitem-margin: 0 !important; 6 | --arrowpanel-menuitem-border-radius: 0 !important; 7 | } -------------------------------------------------------------------------------- /Profile Folder/chrome/images/go-mask.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Profile Folder/chrome/locale/ko/save.dtd: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Profile Folder/chrome/pages/newTabHome/resources/delete.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Profile Folder/chrome/windows/saveAs/scripts/script.js: -------------------------------------------------------------------------------- 1 | setTimeout(() => { 2 | const type = document.getElementById("type"); 3 | type.value = type.value.replace(" (", ", ").replace(")", ""); 4 | 5 | var icon = document.getElementById("contentTypeImage"); 6 | icon.src = icon.src.replace("size=16", "size=32"); 7 | }, 50); -------------------------------------------------------------------------------- /Profile Folder/chrome/frameworks/zuneMetro/partials/controls/_pages.scss: -------------------------------------------------------------------------------- 1 | .pagesContainer:not(#text) { 2 | display: flex; 3 | flex: 1; 4 | 5 | > *:not(#previewContainer) { 6 | flex: 1; 7 | 8 | color: #3C3C3C; 9 | display: none; 10 | 11 | > label { 12 | width: 80%; 13 | line-height: 17pt; 14 | } 15 | } 16 | } -------------------------------------------------------------------------------- /Profile Folder/chrome/frameworks/zuneMetro/resources/link.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /Profile Folder/chrome/windows/wizard/resources/images/minimise.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Profile Folder/chrome/windows/wizard/resources/images/nav-glyph.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Profile Folder/chrome/frameworks/zuneMetro/resources/close.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Profile Folder/chrome/images/storedpage-mask.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /Profile Folder/chrome/windows/wizard/resources/images/commandlinkbutton-glyph.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Profile Folder/chrome/images/find-close-mask.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Profile Folder/chrome/JS/BeautyFox_internetOptions.uc.js: -------------------------------------------------------------------------------- 1 | // ==UserScript== 2 | // @name BeautyFox - Internet options Dialog 3 | // @author AngelBruni 4 | // @loadorder 3 5 | // ==/UserScript== 6 | 7 | function openInternetOptions() { 8 | pref("BeautyFox.option.bInetCPL").tryGet.bool() ? runFile("Rundll32.exe", "shell32.dll,Control_RunDLL inetcpl.cpl") : openPreferences(); 9 | } -------------------------------------------------------------------------------- /Profile Folder/chrome/images/favorites-mask.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Profile Folder/chrome/locale/ko/about.dtd: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Profile Folder/chrome/images/stop-mask.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Profile Folder/chrome/images/back.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /Profile Folder/chrome/locale/ko/newTabHome.dtd: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /Profile Folder/chrome/locale/en-GB/save.dtd: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Profile Folder/chrome/locale/en-US/save.dtd: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Profile Folder/chrome/locale/ja/save.dtd: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Profile Folder/chrome/locale/ja/newTabHome.dtd: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /Profile Folder/chrome/JS/BeautyFox_customWindow.uc.js: -------------------------------------------------------------------------------- 1 | // ==UserScript== 2 | // @name BeautyFox - Custom Window 3 | // @author AngelBruni 4 | // @loadorder 3 5 | // ==/UserScript== 6 | 7 | function launchBeautyFoxWizard() { 8 | if (!pref("BeautyFox.option.bDoNotRunWizardInNextStart").tryGet.bool()) 9 | openWindow("wizard", "chrome,centerscreen") 10 | } 11 | 12 | const openBeautyFoxOptionsDialog = () => openWindow("options", "chrome,centerscreen"); -------------------------------------------------------------------------------- /Profile Folder/chrome/locale/es-ES/save.dtd: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Profile Folder/chrome/locale/ko/dialogs.dtd: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /Profile Folder/chrome/locale/pt-BR/save.dtd: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Profile Folder/chrome/locale/pt-PT/save.dtd: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Profile Folder/chrome/locale/en-GB/newTabHome.dtd: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /Profile Folder/chrome/locale/en-US/newTabHome.dtd: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /Profile Folder/chrome/images/feedback.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Profile Folder/chrome/locale/id/save.dtd: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Profile Folder/chrome/locale/tr-TR/save.dtd: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Profile Folder/chrome/locale/es-ES/newTabHome.dtd: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /Profile Folder/chrome/locale/pt-PT/newTabHome.dtd: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /Firefox Folder/config.js: -------------------------------------------------------------------------------- 1 | // skip 1st line 2 | try { 3 | 4 | let cmanifest = Cc['@mozilla.org/file/directory_service;1'].getService(Ci.nsIProperties).get('UChrm', Ci.nsIFile); 5 | cmanifest.append('utils'); 6 | cmanifest.append('chrome.manifest'); 7 | 8 | if(cmanifest.exists()){ 9 | Components.manager.QueryInterface(Ci.nsIComponentRegistrar).autoRegister(cmanifest); 10 | ChromeUtils.importESModule('chrome://userchromejs/content/boot.sys.mjs'); 11 | } 12 | 13 | } catch(ex) {}; -------------------------------------------------------------------------------- /Profile Folder/chrome/frameworks/zuneMetro/resources/warning.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Profile Folder/chrome/locale/id/newTabHome.dtd: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /Profile Folder/chrome/locale/pt-BR/newTabHome.dtd: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /Profile Folder/chrome/locale/tr-TR/newTabHome.dtd: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /Profile Folder/chrome/locale/en-GB/dialogs.dtd: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /Profile Folder/chrome/locale/en-US/dialogs.dtd: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /Profile Folder/chrome/locale/ja/dialogs.dtd: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /Profile Folder/chrome/images/favorites.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Profile Folder/chrome/frameworks/zuneMetro/partials/controls/_colour.scss: -------------------------------------------------------------------------------- 1 | :root { 2 | --inputColourBorder: black; 3 | } 4 | 5 | input { 6 | &[type='color'] { 7 | all: unset; 8 | width: 45px; 9 | height: 45px; 10 | box-sizing: border-box; 11 | transition: transform .2s; 12 | 13 | &:hover { 14 | border: 2px solid var(--inputColourBorder); 15 | } 16 | 17 | &:active { 18 | transform: scale(.96); 19 | transition: transform 0s; 20 | } 21 | 22 | div { 23 | border: none !important; 24 | } 25 | } 26 | } -------------------------------------------------------------------------------- /Profile Folder/chrome/locale/id/dialogs.dtd: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /Profile Folder/chrome/temppages/discord-invite.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BeautyFox Discord Server 6 | 7 | 8 | 9 |

If you are not redirected, click here.

10 | 11 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /Profile Folder/chrome/locale/es-ES/dialogs.dtd: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /Profile Folder/chrome/images/downloads.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Profile Folder/chrome/images/home.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Profile Folder/chrome/locale/pt-PT/dialogs.dtd: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /Profile Folder/chrome/locale/tr-TR/dialogs.dtd: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /Profile Folder/chrome/images/downloads-mask.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Profile Folder/chrome/locale/pt-BR/dialogs.dtd: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /Profile Folder/chrome/temppages/changelogs/ob-1.0.2.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | What's new in BeautyFox Open Beta - 1.0.2 6 | 7 | 8 | 9 | < Changelogs list 10 |

What's new in BeautyFox Open Beta - 1.0.2

11 | 14 | 15 | -------------------------------------------------------------------------------- /Profile Folder/chrome/images/refresh-mask.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Profile Folder/chrome/temppages/changelogs/b4.2.1.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | What's new in BeautyFox Beta 4.2.1 6 | 7 | 8 | 9 | < Changelogs list 10 |

What's new in BeautyFox Beta 4.2.1

11 | 14 | 15 | -------------------------------------------------------------------------------- /Profile Folder/chrome/images/search-dropdown-mask.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /Profile Folder/chrome/temppages/changelogs/style.scss: -------------------------------------------------------------------------------- 1 | html { 2 | font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; 3 | display: flex; 4 | margin-top: 2px; 5 | justify-content: center; 6 | } 7 | 8 | body { 9 | width: 1024px; 10 | } 11 | 12 | h1 { 13 | font-size: 31pt; 14 | margin-top: 30px; 15 | font-weight: normal; 16 | background: linear-gradient(90deg, rgba(10, 168, 214, 1) 0%, rgba(137, 46, 144, 1) 50%, #ffa621 75%, rgba(137, 46, 144, 1) 100%); 17 | -webkit-background-clip: text; 18 | -webkit-text-fill-color: transparent; 19 | } -------------------------------------------------------------------------------- /Profile Folder/chrome/temppages/changelogs/style.css: -------------------------------------------------------------------------------- 1 | html { 2 | font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif; 3 | display: flex; 4 | margin-top: 2px; 5 | justify-content: center; 6 | } 7 | 8 | body { 9 | width: 1024px; 10 | } 11 | 12 | h1 { 13 | font-size: 31pt; 14 | margin-top: 30px; 15 | font-weight: normal; 16 | background: linear-gradient(90deg, rgb(10, 168, 214) 0%, rgb(137, 46, 144) 50%, #ffa621 75%, rgb(137, 46, 144) 100%); 17 | -webkit-background-clip: text; 18 | -webkit-text-fill-color: transparent; 19 | }/*# sourceMappingURL=style.css.map */ -------------------------------------------------------------------------------- /Profile Folder/chrome/locale/en-GB/about.dtd: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Profile Folder/chrome/locale/en-US/about.dtd: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Profile Folder/chrome/locale/ja/about.dtd: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Profile Folder/chrome/locale/id/about.dtd: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Profile Folder/chrome/locale/tr-TR/about.dtd: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Profile Folder/chrome/windows/wizard/resources/images/transform-arrow.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /Profile Folder/chrome/images/newtabhome-search-mask.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Profile Folder/chrome/frameworks/zuneMetro/resources/tabArrow.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Profile Folder/chrome/JS/BeautyFox_downloadsButton.uc.js: -------------------------------------------------------------------------------- 1 | // ==UserScript== 2 | // @name BeautyFox - Downloads Button 3 | // @author AngelBruni 4 | // @loadorder 3 5 | // ==/UserScript== 6 | 7 | function downloadsButton() { 8 | const downloadsButton = document.getElementById('downloads-button'); 9 | setAttributes(downloadsButton, { 10 | 'onmousedown': '', 11 | 'oncommand': 'BrowserDownloadsUI();' 12 | }) 13 | 14 | pref('BeautyFox.option.bShowDownloadProgress').tryGet.bool() ? downloadsButton.setAttribute('downloadprogress', true) : downloadsButton.removeAttribute('downloadprogress'); 15 | } -------------------------------------------------------------------------------- /Profile Folder/chrome/images/lock-mask.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Profile Folder/chrome/locale/pt-BR/about.dtd: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Profile Folder/chrome/locale/pt-PT/about.dtd: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Profile Folder/chrome/locale/es-ES/about.dtd: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Profile Folder/chrome/temppages/changelogs/b4.5.8.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | What's new in BeautyFox Beta 4.5.8 6 | 7 | 8 | 9 | < Changelogs list 10 |

What's new in BeautyFox Beta 4.5.8

11 | 15 | 16 | -------------------------------------------------------------------------------- /Profile Folder/chrome/userChrome.scss: -------------------------------------------------------------------------------- 1 | @import 'partials/chrome/localisation'; 2 | 3 | @import 'partials/chrome/keyframes'; 4 | 5 | @import 'partials/chrome/base'; 6 | @import 'partials/chrome/layout-guide'; 7 | 8 | @import 'partials/chrome/urlsearch-results'; 9 | 10 | @import 'partials/chrome/navigation-buttons'; 11 | @import 'partials/chrome/tabs'; 12 | @import 'partials/chrome/toolbars'; 13 | 14 | @import 'partials/chrome/context-menu'; 15 | @import 'partials/chrome/menupopup'; 16 | @import 'partials/chrome/app-menu'; 17 | @import 'partials/chrome/sidebar'; 18 | @import 'partials/chrome/identity-popup'; 19 | 20 | @import 'partials/chrome/devtools'; -------------------------------------------------------------------------------- /Profile Folder/chrome/frameworks/zuneMetro/partials/controls/_link.scss: -------------------------------------------------------------------------------- 1 | :root { 2 | --linkNormal: var(--commandlinkbuttonGlyph); 3 | --linkHot: black; 4 | } 5 | 6 | label { 7 | &.zuneLink { 8 | align-items: center; 9 | padding: 8px 12px; 10 | color: var(--linkNormal); 11 | font-size: 12pt; 12 | text-transform: lowercase; 13 | text-decoration: none; 14 | font-weight: lighter; 15 | cursor: default; 16 | white-space: nowrap; 17 | 18 | &:hover { 19 | color: var(--linkHot); 20 | } 21 | 22 | &::after { 23 | content: url("chrome://userchrome/content/frameworks/zuneMetro/resources/link.svg"); 24 | margin-left: 10px; 25 | } 26 | } 27 | } -------------------------------------------------------------------------------- /Profile Folder/chrome/frameworks/zuneMetro/scripts/modal.js: -------------------------------------------------------------------------------- 1 | function modal(modalId) { 2 | const modalBackground = document.getElementById("modalContainer"); 3 | const modal = document.getElementById(modalId) 4 | 5 | return { 6 | show: function() { 7 | modalBackground.style.opacity = 1; 8 | modalBackground.style.pointerEvents = 'unset'; 9 | 10 | modal.style.display = 'flex'; 11 | }, 12 | 13 | hide: function() { 14 | modalBackground.style.opacity = 0; 15 | modalBackground.style.pointerEvents = null; 16 | 17 | modal.style.display = null; 18 | } 19 | } 20 | } -------------------------------------------------------------------------------- /Profile Folder/chrome/images/search7777-dropdown-mask.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /Profile Folder/chrome/temppages/changelogs/b4.5.6.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | What's new in BeautyFox Beta 4.5.6 6 | 7 | 8 | 9 | < Changelogs list 10 |

What's new in BeautyFox Beta 4.5.6

11 | 15 | 16 | -------------------------------------------------------------------------------- /Profile Folder/chrome/temppages/changelogs/b4.5.7.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | What's new in BeautyFox Beta 4.5.7 6 | 7 | 8 | 9 | < Changelogs list 10 |

What's new in BeautyFox Beta 4.5.7

11 | 15 | 16 | -------------------------------------------------------------------------------- /Profile Folder/chrome/partials/content/_aboutpreferences.scss: -------------------------------------------------------------------------------- 1 | @-moz-document url-prefix(about:preferences) { 2 | #tabPositionSettingsContainer { 3 | display: none !important; 4 | } 5 | 6 | #statusBarGroup { 7 | display: none !important; 8 | } 9 | 10 | #bookmarksBarPositionGroup { 11 | display: none !important; 12 | } 13 | 14 | #category-theme { 15 | display: none !important; 16 | } 17 | 18 | #firefoxThemeCategory { 19 | display: none !important; 20 | } 21 | 22 | #themeGroup { 23 | display: none !important; 24 | } 25 | 26 | [data-subcategory='highlights'] { 27 | display: none !important; 28 | } 29 | } -------------------------------------------------------------------------------- /Profile Folder/chrome/images/cert-error.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /Profile Folder/chrome/temppages/changelogs/b4.5.2.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | What's new in BeautyFox Beta 4.5.2 6 | 7 | 8 | 9 | < Changelogs list 10 |

What's new in BeautyFox Beta 4.5.2

11 | 16 | 17 | -------------------------------------------------------------------------------- /Profile Folder/chrome/locale/ko/privateBrowsing.dtd: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | InPrivate 브라우징은 Internet Explorer가 사용자의 검색 세션에 관한 데이터를 저장하지 못하도록 합니다. 데이터에는 쿠키, 임시 인터넷 파일, 검색 기록 및 기타 데이터가 포함됩니다. 기본적으로 도구 모음 및 확장 프로그램은 사용 안 함으로 설정됩니다. 자세한 내용은 도움말을 참조하십시오."> 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /Profile Folder/chrome/temppages/changelogs/b4.5.3.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | What's new in BeautyFox Beta 4.5.3 6 | 7 | 8 | 9 | < Changelogs list 10 |

What's new in BeautyFox Beta 4.5.3

11 | 17 | 18 | -------------------------------------------------------------------------------- /Profile Folder/chrome/temppages/changelogs/rc1-1.0.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | What's new in BeautyFox Release Candidate 1 - 1.0 6 | 7 | 8 | 9 | < Changelogs list 10 |

What's new in BeautyFox Release Candidate 1 - 1.0

11 | 16 | 17 | -------------------------------------------------------------------------------- /Profile Folder/chrome/temppages/changelogs/b4.5.5.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | What's new in BeautyFox Beta 4.5.5 6 | 7 | 8 | 9 | < Changelogs list 10 |

What's new in BeautyFox Beta 4.5.5

11 | 15 | 16 | -------------------------------------------------------------------------------- /Profile Folder/chrome/frameworks/zuneMetro/style.scss: -------------------------------------------------------------------------------- 1 | @import 'partials/frame/window'; 2 | @import 'partials/frame/titlebar'; 3 | @import 'partials/frame/modal'; 4 | 5 | @import 'partials/base'; 6 | 7 | @import 'partials/controls/link'; 8 | @import 'partials/controls/usertile'; 9 | @import 'partials/controls/navbutton'; 10 | @import 'partials/controls/button'; 11 | @import 'partials/controls/combobox'; 12 | @import 'partials/controls/input'; 13 | @import 'partials/controls/colour'; 14 | @import 'partials/controls/breadcrumbbar'; 15 | @import 'partials/controls/commandlinkbutton'; 16 | @import 'partials/controls/tile'; 17 | @import 'partials/controls/tabstrip'; 18 | @import 'partials/controls/checkbox'; 19 | @import 'partials/controls/pages'; 20 | @import 'partials/controls/preview'; 21 | 22 | @import 'partials/animations'; -------------------------------------------------------------------------------- /Profile Folder/chrome/JS/BeautyFox_titlebar.uc.js: -------------------------------------------------------------------------------- 1 | // ==UserScript== 2 | // @name BeautyFox - Titlebar 3 | // @author AngelBruni 4 | // @loadorder 3 5 | // ==/UserScript== 6 | 7 | function createFakeTitlebarSpace() { 8 | if (!navigator.userAgent.includes("Macintosh")) { 9 | var fakeTitlebarSpace = document.createXULElement("vbox"); 10 | fakeTitlebarSpace.id = "fakeTitlebarSpace"; 11 | 12 | var parentElement = document.querySelector("#navigator-toolbox-background"); 13 | parentElement.parentNode.insertBefore(fakeTitlebarSpace, parentElement); 14 | 15 | var titlebarButtonboxContainers = document.querySelectorAll(".titlebar-buttonbox-container"); 16 | 17 | titlebarButtonboxContainers.forEach(function(element) { fakeTitlebarSpace.appendChild(element); }); 18 | } 19 | } -------------------------------------------------------------------------------- /Profile Folder/chrome/frameworks/zuneMetro/partials/controls/_usertile.scss: -------------------------------------------------------------------------------- 1 | userTile { 2 | padding: 9px; 3 | padding-right: 0; 4 | align-items: center; 5 | display: flex; 6 | 7 | .userTileImageContainer { 8 | overflow: hidden; 9 | margin-right: 10px; 10 | } 11 | 12 | .userTileImageContainer, 13 | image { 14 | min-width: 48px; 15 | min-height: 48px; 16 | max-width: 48px; 17 | max-height: 48px; 18 | } 19 | 20 | > .userTileInfoContainer { 21 | > .userTileName { 22 | font-size: 12pt; 23 | } 24 | 25 | > .userTileRole { 26 | font-size: 9pt; 27 | 28 | > span { 29 | &::after { 30 | content: ';\00a0'; 31 | } 32 | 33 | &:last-of-type { 34 | &::after { 35 | content: '.'; 36 | } 37 | } 38 | } 39 | } 40 | } 41 | 42 | > .userTileSocials { 43 | margin-left: auto; 44 | } 45 | } -------------------------------------------------------------------------------- /Profile Folder/chrome/styles/dialog.css: -------------------------------------------------------------------------------- 1 | /* This Source Code Form is subject to the terms of the Mozilla Public 2 | * License, v. 2.0. If a copy of the MPL was not distributed with this 3 | * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 4 | /* ===== dialog.css ===================================================== 5 | == Styles used by the XUL dialog element. 6 | ======================================================================= */ 7 | @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); 8 | /* ::::: dialog ::::: */ 9 | :host { 10 | padding-block: 8px 10px; 11 | padding-inline: 8px 10px; 12 | } 13 | 14 | /* ::::: dialog buttons ::::: */ 15 | button { 16 | font: menu; 17 | } 18 | 19 | /* ::::: footer ::::: */ 20 | .dialog-button-box { 21 | gap: 8px; 22 | }/*# sourceMappingURL=dialog.css.map */ -------------------------------------------------------------------------------- /Profile Folder/chrome/styles/dialog.scss: -------------------------------------------------------------------------------- 1 | /* This Source Code Form is subject to the terms of the Mozilla Public 2 | * License, v. 2.0. If a copy of the MPL was not distributed with this 3 | * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 4 | 5 | /* ===== dialog.css ===================================================== 6 | == Styles used by the XUL dialog element. 7 | ======================================================================= */ 8 | 9 | @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); 10 | 11 | /* ::::: dialog ::::: */ 12 | 13 | :host { 14 | padding-block: 8px 10px; 15 | padding-inline: 8px 10px; 16 | } 17 | 18 | /* ::::: dialog buttons ::::: */ 19 | 20 | button { 21 | font: menu; 22 | } 23 | 24 | /* ::::: footer ::::: */ 25 | 26 | .dialog-button-box { 27 | gap: 8px; 28 | } -------------------------------------------------------------------------------- /Profile Folder/chrome/temppages/changelogs/b4.5.10.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | What's new in BeautyFox Beta 4.5.10 6 | 7 | 8 | 9 | < Changelogs list 10 |

What's new in BeautyFox Beta 4.5.10

11 | 17 | 18 | -------------------------------------------------------------------------------- /Profile Folder/chrome/JS/userChrome_ag_css.sys.mjs: -------------------------------------------------------------------------------- 1 | // ==UserScript== 2 | // @name userChrome_agent_css 3 | // @namespace userChrome_Agent_Sheet_CSS 4 | // @version 0.0.7 5 | // @description Load userChrome.ag.css as agent sheet from resources folder using chrome: uri 6 | // ==/UserScript== 7 | 8 | (function () { 9 | let sss = Cc['@mozilla.org/content/style-sheet-service;1'].getService(Ci.nsIStyleSheetService); 10 | 11 | // Try to load userChrome.ag.css as agent sheet 12 | // WARNING - agent sheets loaded like this affect each and every document you load including web sites. So be careful with your custom styles. 13 | 14 | try { 15 | sss.loadAndRegisterSheet(Services.io.newURI("chrome://userChrome/content/userChrome.ag.css"), sss.AGENT_SHEET); 16 | } catch (e) { 17 | console.error(`Could not load userChrome.ag.css: ${e.name}`) 18 | } 19 | })(); -------------------------------------------------------------------------------- /Profile Folder/chrome/temppages/changelogs/b4.4.1.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | What's new in BeautyFox Beta 4.4.1 6 | 7 | 8 | 9 | < Changelogs list 10 |

What's new in BeautyFox Beta 4.4.1

11 | 18 | 19 | -------------------------------------------------------------------------------- /Profile Folder/chrome/temppages/changelogs/b4.1.1.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | What's new in BeautyFox Beta 4.1.1 6 | 7 | 8 | 9 | < Changelogs list 10 |

What's new in BeautyFox Beta 4.1.1

11 | 17 | 18 | -------------------------------------------------------------------------------- /Profile Folder/chrome/JS/BeautyFox_containerAppearance.uc.js: -------------------------------------------------------------------------------- 1 | // ==UserScript== 2 | // @name BeautyFox - Container Appearance 3 | // @author AngelBruni 4 | // @loadorder 3 5 | // ==/UserScript== 6 | 7 | function setContainerAppearance() { 8 | const navBar = document.getElementById("nav-bar"); 9 | 10 | setTimeout(() => { 11 | const userContextIcons = document.getElementById("userContext-icons"); 12 | const containerColour = getComputedStyle(userContextIcons).getPropertyValue("--identity-icon-color"); 13 | 14 | if (userContextIcons.hasAttribute("hidden")) { 15 | navBar.removeAttribute("iscontainer") 16 | navBar.style.removeProperty("--containerColour") 17 | } else { 18 | navBar.style.setProperty("--containerColour", containerColour) 19 | navBar.setAttribute("iscontainer", "true"); 20 | } 21 | }, 0); 22 | } 23 | window.addEventListener("TabSelect", setContainerAppearance); -------------------------------------------------------------------------------- /Profile Folder/chrome/locale/ja/privateBrowsing.dtd: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | InPrivate Browsing helps prevent Internet Explorer from storing data about your browsing session. This includes cookies, temporary Internet files, history, and other data. Toolbars and extensions are disabled by default. See Help for more information."> 5 | 6 | 7 | -------------------------------------------------------------------------------- /Profile Folder/chrome/locale/en-GB/privateBrowsing.dtd: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | InPrivate Browsing helps prevent Internet Explorer from storing data about your browsing session. This includes cookies, temporary Internet files, history, and other data. Toolbars and extensions are disabled by default. See Help for more information."> 5 | 6 | 7 | -------------------------------------------------------------------------------- /Profile Folder/chrome/temppages/changelogs/b4.5.1.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | What's new in BeautyFox Beta 4.5.1 6 | 7 | 8 | 9 | < Changelogs list 10 |

What's new in BeautyFox Beta 4.5.1

11 | 19 | 20 | -------------------------------------------------------------------------------- /Profile Folder/chrome/temppages/changelogs/b4.4.3.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | What's new in BeautyFox Beta 4.4.3 6 | 7 | 8 | 9 | < Changelogs list 10 |

What's new in BeautyFox Beta 4.4.3

11 | 18 | 19 | -------------------------------------------------------------------------------- /Profile Folder/chrome/images/favicon_bing2013.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 11 | 12 | 14 | 15 | -------------------------------------------------------------------------------- /Profile Folder/chrome/locale/en-US/privateBrowsing.dtd: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | InPrivate Browsing helps prevent Internet Explorer from storing data about your browsing session. This includes cookies, temporary Internet files, history, and other data. Toolbars and extensions are disabled by default. See Help for more information."> 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /Profile Folder/chrome/pages/newTabHome/scripts/search.js: -------------------------------------------------------------------------------- 1 | const searchBox = document.getElementById('searchBox'); 2 | searchBox.value = null; 3 | function searchTheWeb() { location.href = 'https://' + Services.search.defaultEngine.searchUrlDomain + '/search?q=' + searchBox.value; } 4 | 5 | /*if (Services.search.defaultEngine.searchUrlDomain !== 'www.bing.com') { 6 | document.getElementById('searchLogo').style.display = 'none'; 7 | }*/ 8 | 9 | const searchLogo = document.getElementById('searchLogo'); 10 | var logoSrc = 'chrome://userchrome/content/pages/newTabHome/resources/' + Services.search.defaultEngine.name.toLowerCase() + '.svg'; 11 | fetch(logoSrc) 12 | .then(function() { searchLogo.firstElementChild.src = logoSrc; }) 13 | .catch(error => { document.getElementById('searchLogo').style.display = 'none'; }); 14 | 15 | 16 | searchForm.addEventListener('submit', event => { 17 | event.preventDefault(); 18 | searchTheWeb(); 19 | }); -------------------------------------------------------------------------------- /Profile Folder/chrome/locale/pt-BR/privateBrowsing.dtd: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Navegação InPrivate evita que o Internet Explorer armazene dados da sua sessão de navegação, o que inclui cookies, arquivos de Internet temporários, histórico, etc. As barras de ferramentas e extensões são desabilitadas por padrão. Veja a Ajuda para saber mais."> 5 | 6 | 7 | -------------------------------------------------------------------------------- /Profile Folder/chrome/locale/pt-PT/privateBrowsing.dtd: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Navegação InPrivate evita que o Internet Explorer armazene dados da sua sessão de navegação, o que inclui cookies, arquivos de Internet temporários, histórico, etc. As barras de ferramentas e extensões são desabilitadas por padrão. Veja a Ajuda para saber mais."> 5 | 6 | 7 | -------------------------------------------------------------------------------- /Extensions/suggestedSites/suggestions.json: -------------------------------------------------------------------------------- 1 | { 2 | "https://www.google.com": [ 3 | { 4 | "url": "https://www.bing.com/", 5 | "title": "Bing", 6 | "favicon": "https://www.bing.com/sa/simg/favicon-trans-bg-blue-mg-png.png" 7 | }, 8 | { 9 | "url": "https://www.ecosia.org/", 10 | "title": "Ecosia", 11 | "favicon": "https://cdn-static.ecosia.org/static/icons/favicon.ico" 12 | }, 13 | { 14 | "url": "https://search.brave.com/", 15 | "title": "Brave Search", 16 | "favicon": "https://cdn.search.brave.com/serp/v2/_app/immutable/assets/favicon-16x16.341beadf.png" 17 | }, 18 | { 19 | "url": "https://www.startpage.com/", 20 | "title": "Startpage", 21 | "favicon": "https://www.startpage.com/sp/cdn/favicons/favicon-16x16--default.png" 22 | } 23 | ] 24 | } -------------------------------------------------------------------------------- /Profile Folder/chrome/JS/BeautyFox_favouritesSidebarButton.uc.js: -------------------------------------------------------------------------------- 1 | // ==UserScript== 2 | // @name BeautyFox - Favourites Sidebar Button 3 | // @author AngelBruni 4 | // @loadorder 3 5 | // ==/UserScript== 6 | 7 | function createFavouritesSidebarButton() { 8 | try { 9 | const button_label = "Open Bookmarks Sidebar"; 10 | CustomizableUI.createWidget({ 11 | id: "bookmarksSidebarButton", 12 | defaultArea: CustomizableUI.AREA_NAVBAR, 13 | removable: true, 14 | label: button_label, 15 | tooltiptext: button_label, 16 | onCommand: function () { 17 | Services.prefs.setBoolPref("sidebar.position_start", false); 18 | SidebarUI.toggle("viewBookmarksSidebar"); 19 | }, 20 | onCreated: function (button) { return button; }, 21 | }); 22 | } 23 | catch (e) { Components.utils.reportError(e); } 24 | } -------------------------------------------------------------------------------- /Profile Folder/chrome/locale/tr-TR/privateBrowsing.dtd: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | InPrivate Gözatma , Internet Explorer'ın tarama oturumunuzla ilgili verileri depolamasını önlemeye yardımcı olur. Buna çerezler, geçici İnternet dosyaları, geçmiş ve diğer veriler dahildir. Araç çubukları ve uzantılar varsayılan olarak devre dışıdır. Daha fazla bilgi için Yardım'a bakın."> 5 | 6 | 7 | -------------------------------------------------------------------------------- /Profile Folder/chrome/partials/chrome/_keyframes.scss: -------------------------------------------------------------------------------- 1 | @keyframes tab-throbber { 2 | 0% { 3 | background-position-x: 0; 4 | } 5 | 100% { 6 | background-position-x: -192px; 7 | } 8 | } 9 | 10 | @keyframes guidePulseBefore { 11 | 0% { 12 | transform: translateX(-50%) scale(1); 13 | 14 | } 15 | 50% { 16 | transform: translateX(-50%) scale(1.2); 17 | 18 | } 19 | 100% { 20 | transform: translateX(-50%) scale(1); 21 | 22 | } 23 | } 24 | 25 | @keyframes guidePulseAfter { 26 | 0% { 27 | transform: translateX(-50%) scale(1); 28 | 29 | } 30 | 50% { 31 | transform: translateX(-50%) scale(1.2); 32 | 33 | } 34 | 100% { 35 | transform: translateX(-50%) scale(1); 36 | 37 | } 38 | } 39 | 40 | @keyframes downloadCompleted { 41 | from { 42 | opacity: 1; 43 | } to { 44 | opacity: 0; 45 | } 46 | } -------------------------------------------------------------------------------- /Profile Folder/chrome/JS/BeautyFox_sendFeedbackButton.uc.js: -------------------------------------------------------------------------------- 1 | // ==UserScript== 2 | // @name BeautyFox - Feedback Button 3 | // @author AngelBruni 4 | // @loadorder 3 5 | // ==/UserScript== 6 | 7 | function createFeedbackButton() { 8 | try { 9 | const button_label = "Feedback"; 10 | 11 | CustomizableUI.createWidget({ 12 | id: "feedbackButton", 13 | defaultArea: CustomizableUI.AREA_NAVBAR, 14 | removable: true, 15 | label: button_label, 16 | tooltiptext: button_label, 17 | onClick: function () { sendFeedbackLink(); }, 18 | onCreated: function (button) { return button; }, 19 | }); 20 | } 21 | catch (e) { Components.utils.reportError(e); } 22 | } 23 | 24 | function sendFeedbackLink() { 25 | _ucUtils.loadURI(window, { 26 | url: 'chrome://userchrome/content/temppages/discord-invite.html', 27 | where: "tab" 28 | }); 29 | } -------------------------------------------------------------------------------- /Profile Folder/chrome/locale/id/privateBrowsing.dtd: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | Penjelajahan InPrivate membantu mencegah Internet Explorer menyimpan data tentang sesi penjelajahan Anda. Ini termasuk, cookie, file Internet sementara, riwayat, dan data lainnya. Toolbar dan ekstensi dinonaktifkan secara default. Lihat Bantuan untuk informasi lebih lanjut."> 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /Profile Folder/chrome/frameworks/zuneMetro/partials/controls/_navbutton.scss: -------------------------------------------------------------------------------- 1 | :root { 2 | --navButtonBorderNormal: rgba(0, 0, 0, .5); 3 | --navButtonBorderHover: rgb(0, 0, 0); 4 | --navButtonGlyph: rgba(0, 0, 0, .75); 5 | } 6 | 7 | navButton { 8 | display: flex; 9 | height: 18px; 10 | width: 18px; 11 | border-radius: 50%; 12 | border: 1.5px solid var(--navButtonBorderNormal); 13 | color: var(--navButtonGlyph); 14 | justify-content: center; 15 | align-items: center; 16 | line-height: 0; 17 | -moz-window-dragging: no-drag !important; 18 | 19 | &::before { 20 | height: 8px; 21 | width: 10px; 22 | } 23 | 24 | &:hover { 25 | border: 1.5px solid var(--navButtonBorderHover); 26 | } 27 | 28 | &:active { 29 | opacity: .2; 30 | } 31 | 32 | &[disabled='true'] { 33 | pointer-events: none; 34 | } 35 | 36 | &[data-navtype='back'] { 37 | &::before { 38 | content: url("chrome://bfwindows/content/wizard/resources/images/nav-glyph.svg"); 39 | } 40 | } 41 | } -------------------------------------------------------------------------------- /Profile Folder/chrome/temppages/changelogs/rc3-1.0.1.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | What's new in BeautyFox Release Candidate 3 - 1.0.1 6 | 7 | 8 | 9 | < Changelogs list 10 |

What's new in BeautyFox Release Candidate 3 - 1.0.1

11 | 18 | 19 | -------------------------------------------------------------------------------- /Profile Folder/chrome/resources/ieframe.dll/Bitmap/ADDRESS_XP-ADDRESS_XP_120_02.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /Profile Folder/chrome/locale/es-ES/privateBrowsing.dtd: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Exploración de InPrivate evita que Internet Explorer almacene datos sobre su sesión de exploración. Incluye cookies, archivos temporales de Internet, historial y otros datos. Las barras de herramientas y las extensiones están deshabilitadas de forma predeterminada. Consulte la Ayuda para obtener más información."> 5 | 6 | 7 | -------------------------------------------------------------------------------- /Profile Folder/chrome/temppages/changelogs/rc3-1.0.2.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | What's new in BeautyFox Release Candidate 3 - 1.0.2 6 | 7 | 8 | 9 | < Changelogs list 10 |

What's new in BeautyFox Release Candidate 3 - 1.0.2

11 | 19 | 20 | -------------------------------------------------------------------------------- /Profile Folder/chrome/pages/newTabHome/scripts/appearance.js: -------------------------------------------------------------------------------- 1 | //const pref = 'BeautyFox.appearance.storedAppearanceChoice' 2 | const attr = 'appearance'; 3 | if (pref("BeautyFox.appearance.storedAppearanceChoice").tryGet.int() == 0) { 4 | if (location == "about:privatebrowsing" || location == "about:inprivate") { 5 | document.documentElement.setAttribute(attr, "IE97930") 6 | } else { 7 | document.documentElement.setAttribute(attr, "IE97777") 8 | } 9 | } else if (pref("BeautyFox.appearance.storedAppearanceChoice").tryGet.int() <= 1) { 10 | document.documentElement.setAttribute(attr, "IE97930") 11 | } else if (pref("BeautyFox.appearance.storedAppearanceChoice").tryGet.int() <= 2) { 12 | document.documentElement.setAttribute(attr, "IE9") 13 | } else if (pref("BeautyFox.appearance.storedAppearanceChoice").tryGet.int() <= 6) { 14 | document.documentElement.setAttribute(attr, "IE10Plus") 15 | } else if (pref("BeautyFox.appearance.storedAppearanceChoice").tryGet.int() >= 7) { 16 | document.documentElement.setAttribute(attr, "IE11") 17 | } -------------------------------------------------------------------------------- /Profile Folder/chrome/temppages/changelogs/b4.5.9.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | What's new in BeautyFox Beta 4.5.9 6 | 7 | 8 | 9 | < Changelogs list 10 |

What's new in BeautyFox Beta 4.5.9

11 | 19 | 20 | -------------------------------------------------------------------------------- /Profile Folder/chrome/images/extensions.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Profile Folder/chrome/temppages/changelogs/rc2-1.0.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | What's new in BeautyFox Release Candidate 2 - 1.0 6 | 7 | 8 | 9 | < Changelogs list 10 |

What's new in BeautyFox Release Candidate 2 - 1.0

11 | 20 | 21 | -------------------------------------------------------------------------------- /Profile Folder/chrome/images/containers.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Profile Folder/chrome/temppages/changelogs/b4.4.2.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | What's new in BeautyFox Beta 4.4.2 6 | 7 | 8 | 9 | < Changelogs list 10 |

What's new in BeautyFox Beta 4.4.2

11 | 20 | 21 | -------------------------------------------------------------------------------- /Profile Folder/chrome/frameworks/zuneMetro/partials/controls/_checkbox.scss: -------------------------------------------------------------------------------- 1 | :root { 2 | --checkbox: linear-gradient(130deg, #e6e6e6 0%, #ffffff 100%); 3 | --checkboxBorder: #242424; 4 | --checkboxTick: var(--checkboxBorder); 5 | 6 | --checkboxSize: 13px; 7 | } 8 | 9 | checkbox { 10 | font-size: 10pt; 11 | margin: 0; 12 | width: fit-content; 13 | 14 | &:hover { 15 | .checkbox-label { 16 | opacity: .5; 17 | } 18 | } 19 | 20 | .checkbox-check { 21 | position: relative; 22 | border-radius: 0px; 23 | border: 1px solid var(--checkboxBorder); 24 | background: var(--checkbox); 25 | 26 | &:not([native]) { 27 | height: var(--checkboxSize); 28 | width: var(--checkboxSize); 29 | } 30 | 31 | &[checked] { 32 | border: 1px solid var(--checkboxBorder); // HACK: Gotta do this properly later. 33 | background: url("chrome://userchrome/content/frameworks/zuneMetro/resources/checkboxTick.svg") center no-repeat, var(--checkbox); // HACK: Gotta do this properly later. 34 | fill: currentColor; 35 | color: var(--checkboxTick); 36 | } 37 | } 38 | 39 | .checkbox-label { 40 | margin: 0 !important; 41 | } 42 | } -------------------------------------------------------------------------------- /Profile Folder/chrome/images/extensions-mask.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Profile Folder/chrome/JS/BeautyFox_ntRun.uc.js: -------------------------------------------------------------------------------- 1 | // ==UserScript== 2 | // @name BeautyFox - File Runner 3 | // @author AngelBruni 4 | // @loadorder 1 5 | // ==/UserScript== 6 | 7 | function runFile(filePath, commandLineArgs) { 8 | const HWND = ctypes.voidptr_t; 9 | const LPCWSTR = ctypes.jschar.ptr; 10 | const HINSTANCE = ctypes.voidptr_t; 11 | const UINT = ctypes.uint32_t; 12 | const SW = { SHOWNORMAL: 1 }; 13 | 14 | const shell32 = ctypes.open("shell32.dll"); 15 | 16 | const ShellExecuteW = shell32.declare( 17 | "ShellExecuteW", 18 | ctypes.winapi_abi, 19 | HINSTANCE, 20 | HWND, LPCWSTR, LPCWSTR, LPCWSTR, LPCWSTR, UINT 21 | ); 22 | 23 | const filePathWide = ctypes.jschar.array()(filePath); 24 | const commandLineArgsWide = ctypes.jschar.array()(commandLineArgs); 25 | 26 | const hInstance = ShellExecuteW( 27 | null, 28 | "open", 29 | filePathWide, 30 | commandLineArgsWide, 31 | null, 32 | SW.SHOWNORMAL 33 | ); 34 | 35 | if (hInstance <= 32) 36 | console.error("Error starting "+ filePath +". "+ hInstance.toString()) 37 | 38 | shell32.close(); 39 | } -------------------------------------------------------------------------------- /Profile Folder/chrome/images/back_disabled.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Extensions/suggestedSites/background.js: -------------------------------------------------------------------------------- 1 | // background.js 2 | 3 | function updateTabInfo() { 4 | browser.tabs.query({ active: true, currentWindow: true }, function (tabs) { 5 | const activeTab = tabs[0]; 6 | if (activeTab && activeTab.url) { 7 | try { 8 | const parsedUrl = new URL(activeTab.url); 9 | const baseUrl = `${parsedUrl.protocol}//${parsedUrl.hostname}`; 10 | const tabTitle = activeTab.title; 11 | 12 | browser.runtime.sendMessage({ 13 | action: "updateTabInfo", 14 | url: baseUrl, 15 | title: tabTitle 16 | }); 17 | } catch (error) { 18 | console.error("Error processing tab URL:", error); 19 | } 20 | } else { 21 | console.warn("Active tab or URL is undefined."); 22 | } 23 | }); 24 | } 25 | 26 | // Listen for messages from the popup script 27 | browser.runtime.onMessage.addListener(function (message, sender, sendResponse) { 28 | if (message.action === "getTabInfo") { 29 | // Respond with the tab information when requested by the popup 30 | updateTabInfo(); 31 | } 32 | }); 33 | -------------------------------------------------------------------------------- /Profile Folder/chrome/temppages/changelogs/style.css.map: -------------------------------------------------------------------------------- 1 | {"version":3,"sources":["style.scss","style.css"],"names":[],"mappings":"AAAA;EACI,4DAAA;EACA,aAAA;EACA,eAAA;EACA,uBAAA;ACCJ;;ADEA;EACI,aAAA;ACCJ;;ADEA;EACI,eAAA;EACA,gBAAA;EACA,mBAAA;EACA,oHAAA;EACA,6BAAA;EACA,oCAAA;ACCJ","file":"style.css","sourcesContent":["html {\r\n font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;\r\n display: flex;\r\n margin-top: 2px;\r\n justify-content: center;\r\n}\r\n\r\nbody {\r\n width: 1024px;\r\n}\r\n\r\nh1 {\r\n font-size: 31pt;\r\n margin-top: 30px;\r\n font-weight: normal;\r\n background: linear-gradient(90deg, rgba(10, 168, 214, 1) 0%, rgba(137, 46, 144, 1) 50%, #ffa621 75%, rgba(137, 46, 144, 1) 100%);\r\n -webkit-background-clip: text;\r\n -webkit-text-fill-color: transparent;\r\n}","html {\n font-family: \"Segoe UI\", Tahoma, Geneva, Verdana, sans-serif;\n display: flex;\n margin-top: 2px;\n justify-content: center;\n}\n\nbody {\n width: 1024px;\n}\n\nh1 {\n font-size: 31pt;\n margin-top: 30px;\n font-weight: normal;\n background: linear-gradient(90deg, rgb(10, 168, 214) 0%, rgb(137, 46, 144) 50%, #ffa621 75%, rgb(137, 46, 144) 100%);\n -webkit-background-clip: text;\n -webkit-text-fill-color: transparent;\n}"]} -------------------------------------------------------------------------------- /Profile Folder/chrome/utils/chrome.manifest: -------------------------------------------------------------------------------- 1 | content userchromejs ./ 2 | content userscripts ../JS/ contentaccessible=yes 3 | content bfwindows ../windows/ contentaccessible=yes 4 | 5 | locale beautyfox en-GB ../locale/en-GB/ 6 | locale beautyfox en-US ../locale/en-US/ 7 | locale beautyfox es-ES ../locale/es-ES/ 8 | locale beautyfox pt-PT ../locale/pt-PT/ 9 | locale beautyfox pt-BR ../locale/pt-BR/ 10 | locale beautyfox tr-TR ../locale/tr-TR/ 11 | locale beautyfox ko ../locale/ko/ 12 | locale beautyfox id ../locale/id/ 13 | locale beautyfox ja ../locale/ja/ 14 | 15 | skin userstyles classic/1.0 ../CSS/ 16 | content userchrome ../ contentaccessible=yes 17 | 18 | override chrome://global/skin/icons/search-textbox.svg ../images/search7.svg 19 | override chrome://global/skin/icons/arrow-down.svg ../frameworks/zuneMetro/resources/comboboxArrow.svg 20 | override chrome://mozapps/content/downloads/unknownContentType.xhtml ../windows/saveAs/index.xhtml 21 | override chrome://global/skin/button.css ../styles/button.css 22 | override chrome://global/skin/dialog.css ../styles/dialog.css -------------------------------------------------------------------------------- /Extensions/suggestedSites/popup.css: -------------------------------------------------------------------------------- 1 | body { 2 | width: 290px; 3 | height: 226px; 4 | font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; 5 | font-size: 9pt; 6 | margin: 0; 7 | padding: 4px 9px; 8 | background-color: white; 9 | user-select: none; 10 | } 11 | h1 { 12 | margin: 0; 13 | margin-bottom: 8px; 14 | font-size: 13pt; 15 | font-weight: normal; 16 | } 17 | h2 { 18 | margin: 0; 19 | font-size: 12pt; 20 | font-weight: normal; 21 | overflow: hidden; 22 | text-overflow: ellipsis; 23 | white-space: nowrap; 24 | } 25 | h3 { 26 | margin: 0; 27 | font-size: 8pt; 28 | display: none; 29 | } 30 | 31 | ul { 32 | padding: 0; 33 | list-style-type: none; 34 | } 35 | 36 | a { 37 | display: flex; 38 | margin-top: 5px; 39 | margin-bottom: 5px; 40 | color: black; 41 | text-decoration: none; 42 | } 43 | 44 | a:hover { 45 | text-decoration: underline; 46 | } 47 | 48 | a > p { 49 | margin: 0; 50 | margin-left: 4px; 51 | margin-bottom: -1px; 52 | } 53 | 54 | .unavailable { 55 | display: none; 56 | } 57 | 58 | .noSuggestions > .unavailable { 59 | display: block; 60 | } 61 | 62 | .noSuggestions > .available { 63 | display: none; 64 | } -------------------------------------------------------------------------------- /Profile Folder/chrome/images/containers-mask.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Extensions/suggestedSites/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "manifest_version": 2, 3 | "name": "Suggested Sites", 4 | "version": "1.1.1", 5 | "permissions": [ 6 | "activeTab", 7 | "http://*/*", 8 | "https://*/*" 9 | ], 10 | "browser_action": { 11 | "default_popup": "popup.html", 12 | "default_icon": { 13 | "16": "images/icon16.png", 14 | "48": "images/icon48.png", 15 | "128": "images/icon128.png" 16 | }, 17 | "default_title": "__MSG_extensionName__" 18 | }, 19 | "browser_specific_settings": { 20 | "gecko": { 21 | "id": "suggestedSites@bruni.com", 22 | "strict_min_version": "42.0" 23 | } 24 | }, 25 | "background": { 26 | "scripts": [ 27 | "background.js" 28 | ], 29 | "persistent": false 30 | }, 31 | "icons": { 32 | "16": "images/icon16.png", 33 | "48": "images/icon48.png", 34 | "128": "images/icon128.png" 35 | }, 36 | "content_scripts": [ 37 | { 38 | "matches": [ 39 | "" 40 | ], 41 | "js": [ 42 | "content.js" 43 | ] 44 | } 45 | ], 46 | "default_locale": "en" 47 | } -------------------------------------------------------------------------------- /Profile Folder/chrome/JS/BeautyFox_fixCheckboxes.uc.js: -------------------------------------------------------------------------------- 1 | // ==UserScript== 2 | // @name BeautyFox - Checkbox Fixer 3 | // @description Fixes checkboxes by setting them to native look. 4 | // @author AngelBruni 5 | // @loadorder 3 6 | // ==/UserScript== 7 | 8 | function convertFindBarCheckboxesToNativeLook() { 9 | document.querySelectorAll("[anonid='highlight']").forEach(element => { 10 | element.setAttribute("native", true); 11 | }); 12 | 13 | document.querySelectorAll("[anonid='find-case-sensitive']").forEach(element => { 14 | element.setAttribute("native", true); 15 | }); 16 | 17 | document.querySelectorAll("[anonid='find-match-diacritics']").forEach(element => { 18 | element.setAttribute("native", true); 19 | }); 20 | 21 | document.querySelectorAll("[anonid='find-entire-word']").forEach(element => { 22 | element.setAttribute("native", true); 23 | }); 24 | } 25 | window.addEventListener("findbaropen", convertFindBarCheckboxesToNativeLook) 26 | 27 | function convertCustomizationPaletteCheckBoxesToNativeLook() { 28 | document.querySelectorAll("#customization-titlebar-visibility-checkbox").forEach(element => { 29 | element.setAttribute("native", true); 30 | }); 31 | } 32 | window.addEventListener("customizationstarting", convertCustomizationPaletteCheckBoxesToNativeLook) -------------------------------------------------------------------------------- /Profile Folder/chrome/images/clear.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /Profile Folder/chrome/images/settings-mask.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Profile Folder/chrome/temppages/changelogs/b4.5.4.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | What's new in BeautyFox Beta 4.5.4 6 | 7 | 8 | 9 | < Changelogs list 10 |

What's new in BeautyFox Beta 4.5.4

11 | 22 | 23 | -------------------------------------------------------------------------------- /Profile Folder/chrome/JS/userChrome_au_css.uc.js: -------------------------------------------------------------------------------- 1 | // ==UserScript== 2 | // @name userChrome_author_css 3 | // @namespace userChrome_Author_Sheet_CSS 4 | // @version 0.0.5 5 | // @description Load userChrome.au.css file as author sheet from resources folder using chrome: uri. The file is loaded only into the document where this script runs which by default is browser.xhtml 6 | // @onlyonce 7 | // @startup preloadedAuthorSheet 8 | // ==/UserScript== 9 | 10 | (function () { 11 | // define a startup object for the script loader to execute 12 | // wherever this script is loaded 13 | _ucUtils.sharedGlobal.preloadedAuthorSheet = { 14 | sheet: null, 15 | _startup: function (win) { 16 | if (!win || !this.sheet) { 17 | return 18 | } 19 | win.windowUtils.addSheet(this.sheet, Ci.nsIDOMWindowUtils.AUTHOR_SHEET); 20 | } 21 | }; 22 | // The next things execute only once per sessions because of @onlyonce in the header 23 | let sss = Cc['@mozilla.org/content/style-sheet-service;1'].getService(Ci.nsIStyleSheetService); 24 | try { 25 | // Try to preload the file and save it to global area 26 | _ucUtils.sharedGlobal.preloadedAuthorSheet.sheet = sss.preloadSheet(makeURI("chrome://userChrome/content/resources/userChrome.au.css"), sss.AUTHOR_SHEET); 27 | } catch (e) { 28 | console.error(`Could not pre-load userChrome.au.css: ${e.name}`) 29 | } 30 | })(); -------------------------------------------------------------------------------- /Profile Folder/chrome/pages/_base.scss: -------------------------------------------------------------------------------- 1 | :root { 2 | --backgroundColour: white; 3 | --background: var(--backgroundColour); 4 | --backgroundBlue: #02a1e2; 5 | --backgroundGradient: linear-gradient(180deg, var(--backgroundBlue) 0%, var(--backgroundColour) 100%); 6 | 7 | --searchBox: var(--backgroundColour); 8 | --searchBoxBorder: rgb(175,175,175); 9 | --searchGlyph: rgb(52,52,52); 10 | 11 | --label: black; 12 | 13 | --header: var(--label); 14 | 15 | --tileEmpty: rgb(247,247,247); 16 | --tileContent: var(--backgroundColour); 17 | --tileBorder: rgb(217,217,217); 18 | 19 | --deleteNormal: rgb(167,165,165); 20 | --deleteHot: rgb(231,60,60); 21 | 22 | --activityLabel: rgb(109,109,109); 23 | 24 | --footerLabel: rgb(85,85,85); 25 | --footerSeparator: rgb(204,204,204); 26 | 27 | &[appearance='IE97777'] { 28 | --backgroundBlue: #9ddaf5; 29 | } 30 | 31 | &[appearance='IE10Plus'], 32 | &[appearance='IE11'] { 33 | --background: color-mix(in srgb, var(--desiredColourForUIALWAYS) 10%, var(--backgroundColour)); 34 | 35 | --header: rgb(80,80,80); 36 | 37 | --tileBorder: rgb(228,228,228); 38 | } 39 | 40 | &[customcolour] { 41 | --backgroundBlue: var(--desiredColourForUI); 42 | } 43 | 44 | &[lang="ko"] { 45 | body { 46 | font-family: 'Malgun Gothic', Tahoma, Geneva, Verdana, sans-serif; 47 | } 48 | } 49 | } 50 | 51 | body { 52 | font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; 53 | } -------------------------------------------------------------------------------- /Profile Folder/chrome/frameworks/zuneMetro/partials/controls/_tabstrip.scss: -------------------------------------------------------------------------------- 1 | :root { 2 | --vboxtabviewitem: #808080; 3 | --hboxtabviewitem: black; 4 | } 5 | 6 | tabstrip { 7 | display: flex; 8 | -moz-window-dragging: no-drag; 9 | text-transform: uppercase; 10 | font-weight: normal; 11 | margin-top: 1px; 12 | height: 100%; 13 | 14 | > tabviewitem { 15 | height: fit-content; 16 | 17 | &:hover { 18 | opacity: .5 !important; 19 | } 20 | 21 | &.active { 22 | pointer-events: none; 23 | } 24 | } 25 | } 26 | 27 | vbox > tabstrip { 28 | font-size: 9pt; 29 | gap: 14px; 30 | 31 | > tabviewitem { 32 | color: var(--vboxtabviewitem); 33 | 34 | &.active { 35 | font-weight: bold; 36 | color: var(--accentFirst); 37 | 38 | &:hover { 39 | opacity: 1 !important; 40 | } 41 | } 42 | } 43 | } 44 | 45 | hbox > tabstrip { 46 | flex-direction: column; 47 | width: 204px; 48 | padding-inline-end: 37px; 49 | margin-inline-start: 17px; 50 | margin-inline-end: 37px; 51 | border-right: 1px solid lightgray; 52 | gap: 6px; 53 | font-weight: bold; 54 | 55 | > tabviewitem { 56 | color: var(--hboxtabviewitem); 57 | font-size: 6pt; 58 | 59 | &.active { 60 | &::before { 61 | content: url("chrome://userchrome/content/frameworks/zuneMetro/resources/tabArrow.svg"); 62 | position: absolute; 63 | left: -7px; 64 | } 65 | 66 | color: var(--hboxtabviewitem); 67 | } 68 | } 69 | } -------------------------------------------------------------------------------- /Extensions/suggestedSites/popup.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | My Extension Popup 5 | 6 | 7 | 8 |
9 |

There are no suggestions for this website

10 |

These sites are popular on the web now:

11 | 37 |

Other suggestions

38 |
39 |
40 |

Top 4 websites that are similar to

41 |

42 | 45 |

Other suggestions

46 |
47 | 48 | 49 | 50 | -------------------------------------------------------------------------------- /Profile Folder/chrome/pages/scripts/colours.js: -------------------------------------------------------------------------------- 1 | function setCustomBackgroundColour() { 2 | document.documentElement.setAttribute("customcolour", false); 3 | const previousDesiredColourForUIStyle = document.getElementById("desiredColourForUIStyle"); 4 | if (previousDesiredColourForUIStyle) { previousDesiredColourForUIStyle.remove(); } 5 | 6 | const desiredColourForUIStyle = document.createElement("style"); 7 | desiredColourForUIStyle.id = 'desiredColourForUIStyle'; 8 | desiredColourForUIStyle.innerHTML = ` 9 | :root { 10 | --desiredColourForUI: `+ getCustomColour() + `; 11 | } 12 | `; 13 | document.head.appendChild(desiredColourForUIStyle); 14 | } 15 | 16 | function setColourWithTimeout() { 17 | let timeout; 18 | if (pref("BeautyFox.option.storedCustomColourMethodForUIChoice").tryGet.int() == 4) { 19 | timeout = 300; 20 | } else { 21 | timeout = 0; 22 | } 23 | setTimeout(() => { 24 | setCustomColourInUI(); 25 | }, timeout); 26 | } 27 | 28 | 29 | let storedCustomColourMethodForUIChoice = pref("BeautyFox.option.storedCustomColourMethodForUIChoice").tryGet.int(); 30 | 31 | if (document.documentElement.getAttribute(attr) == "IE10Plus" || 32 | document.documentElement.getAttribute(attr) == "IE11") { 33 | setColourWithTimeout(); 34 | } else if (document.documentElement.getAttribute(attr) !== "IE97930" && 35 | storedCustomColourMethodForUIChoice >= 1 && 36 | storedCustomColourMethodForUIChoice <= 4) { 37 | setColourWithTimeout(); 38 | } -------------------------------------------------------------------------------- /Profile Folder/chrome/images/settings.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Profile Folder/chrome/JS/BeautyFox_navRow.uc.js: -------------------------------------------------------------------------------- 1 | // ==UserScript== 2 | // @name BeautyFox - Navigation Row 3 | // @author AngelBruni 4 | // @loadorder 3 5 | // ==/UserScript== 6 | 7 | function setNavButtonsRadius() { 8 | try { document.getElementById("navButtonsRadiusStyle").remove(); } catch (error) {} 9 | 10 | let navButtonsRadius = pref("BeautyFox.option.iNavigationButtonsRadius").tryGet.int(); 11 | if (navButtonsRadius < 50) { 12 | let navButtonsRadiusStyle = document.createElement("style"); 13 | navButtonsRadiusStyle.id = "navButtonsRadiusStyle"; 14 | navButtonsRadiusStyle.innerHTML = ` 15 | :root { 16 | --navButtons-radius: `+ navButtonsRadius +`%; 17 | } 18 | 19 | #main-window #nav-bar::before { 20 | content: unset !important; 21 | } 22 | ` 23 | document.head.appendChild(navButtonsRadiusStyle); 24 | } 25 | } 26 | 27 | function updateSettingsAppearance() { 28 | const hideSettingsPopup = pref("BeautyFox.option.bHideSettingsInPopUp").tryGet.bool(); 29 | hideSettingsPopup ? document.documentElement.setAttribute("hidesettingspopup", "true") : document.documentElement.removeAttribute("hidesettingspopup"); 30 | 31 | const useNewSettingsIcon = pref("BeautyFox.option.bDoNotUseOldSettingsIcon").tryGet.bool(); 32 | useNewSettingsIcon ? document.documentElement.setAttribute("newsettingsicon", "true") : document.documentElement.removeAttribute("newsettingsicon"); 33 | } -------------------------------------------------------------------------------- /Profile Folder/chrome/windows/options/scripts/preview.js: -------------------------------------------------------------------------------- 1 | const windowStyling = document.getElementById("windowStyling"); 2 | const appearanceComboboxContainer = document.getElementById("appearanceComboboxContainer"); 3 | const previewContainer = document.getElementById("previewContainer"); 4 | const accentGradient = document.getElementById("accentGradient"); 5 | 6 | document.addEventListener("pageChanged", () => { 7 | var currentMainGroupPage = document.querySelector(".pagesContainer[data-group='main']").getAttribute("data-page"); 8 | var currentAboutPage = document.querySelector(".pagesContainer[data-group='about']").getAttribute("data-page"); 9 | 10 | if (currentMainGroupPage == 7 && currentAboutPage == 2 || currentMainGroupPage == 7 && currentAboutPage == 3) { 11 | previewContainer.style.display = 'none'; 12 | windowStyling.style.minWidth = '800px'; 13 | windowStyling.style.maxWidth = '800px'; 14 | } else if (currentMainGroupPage == 7) { 15 | previewContainer.style.display = 'none'; 16 | windowStyling.style.minWidth = '945px'; 17 | windowStyling.style.maxWidth = '945px'; 18 | } else { 19 | previewContainer.style.display = null; 20 | previewContainer.style.marginRight = null; 21 | windowStyling.style.minWidth = null; 22 | windowStyling.style.maxWidth = null; 23 | } 24 | 25 | accentGradient.style.animation = null; 26 | setTimeout(() => { 27 | accentGradient.style.animation = 'slideYAccentGradient 2s cubic-bezier(0.22, 1, 0.36, 1)'; 28 | }, 100); 29 | }); -------------------------------------------------------------------------------- /Profile Folder/chrome/JS/BeautyFox_aboutDialog.uc.js: -------------------------------------------------------------------------------- 1 | // ==UserScript== 2 | // @name BeautyFox - About Dialog 3 | // @author AngelBruni 4 | // @loadorder 3 5 | // ==/UserScript== 6 | 7 | function callShellAboutWIE() { 8 | const user32 = ctypes.open("user32.dll"); const shell32 = ctypes.open("shell32.dll"); 9 | 10 | const HICON = ctypes.uintptr_t; const HWND = ctypes.voidptr_t; 11 | 12 | const ExtractIcon = shell32.declare("ExtractIconW", ctypes.winapi_abi, HICON, ctypes.voidptr_t, ctypes.char16_t.ptr, ctypes.uint32_t); 13 | const szPath = "C:\\Program Files\\Internet Explorer\\iexplore.exe"; 14 | const hIcon = ExtractIcon(null, szPath, 0); 15 | if (hIcon == 0 || hIcon == ctypes.voidptr_t(0)) { 16 | console.error("Failed to extract icon from iexplore.exe"); 17 | } else { 18 | const GetDesktopWindow = user32.declare("GetDesktopWindow", ctypes.winapi_abi, HWND); 19 | const hwndParent = GetDesktopWindow(); 20 | 21 | const lpszTitle = "Internet Explorer"; 22 | const lpszText = null; 23 | 24 | const ShellAboutW = shell32.declare("ShellAboutW", ctypes.winapi_abi, ctypes.voidptr_t, HWND, ctypes.char16_t.ptr, ctypes.char16_t.ptr, HICON); 25 | ShellAboutW(hwndParent, lpszTitle, lpszText, hIcon); 26 | } 27 | 28 | shell32.close(); user32.close(); 29 | } 30 | 31 | function openAboutIE() { 32 | if (pref('BeautyFox.appearance.IE11Win10').tryGet.bool()) 33 | callShellAboutWIE(); 34 | else 35 | openWindow('aboutIE', 'chrome,centerscreen,dependent,modal') 36 | } -------------------------------------------------------------------------------- /Profile Folder/chrome/JS/BeautyFox_bookmarksBar.uc.js: -------------------------------------------------------------------------------- 1 | // ==UserScript== 2 | // @name BeautyFox - Bookmarks Bar 3 | // @author AngelBruni 4 | // @loadorder 3 5 | // ==/UserScript== 6 | 7 | function createAddToBookmarksBarButton() { 8 | try { 9 | const buttonText = "Add to Favourites Bar"; 10 | CustomizableUI.createWidget({ 11 | id: "addToBookmarksBarButton", 12 | defaultArea: CustomizableUI.AREA_BOOKMARKS, 13 | removable: true, 14 | label: buttonText, 15 | tooltiptext: buttonText, 16 | onCommand: function () { addToBookmarksBar(); }, 17 | onCreated: function (button) { return button; }, 18 | }); 19 | } 20 | catch (e) { Components.utils.reportError(e); } 21 | } 22 | 23 | function addToBookmarksBar() { 24 | const bookmarksSvc = Cc["@mozilla.org/browser/nav-bookmarks-service;1"].getService(Ci.nsINavBookmarksService); 25 | bookmarksSvc.insertBookmark(3, gBrowser.currentURI, bookmarksSvc.DEFAULT_INDEX, gBrowser.selectedTab._fullLabel); 26 | } 27 | 28 | function updateBookmarkAppearance() { 29 | const personalToolbar = document.getElementById('PersonalToolbar'); 30 | const attr = 'bookmarkitemwidth'; 31 | switch (pref('BeautyFox.option.storedBookmarItemTitleWidthChoice').tryGet.int()) { 32 | case 0: 33 | personalToolbar.removeAttribute(attr) 34 | break; 35 | case 1: 36 | personalToolbar.setAttribute(attr, 'small') 37 | break; 38 | case 2: 39 | personalToolbar.setAttribute(attr, 'icons') 40 | break; 41 | } 42 | } -------------------------------------------------------------------------------- /Profile Folder/chrome/temppages/changelogs/b4.2.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | What's new in BeautyFox Beta 4.2 6 | 7 | 8 | 9 | < Changelogs list 10 |

What's new in BeautyFox Beta 4.2

11 | 27 | 28 | -------------------------------------------------------------------------------- /Profile Folder/chrome/frameworks/zuneMetro/resources/comboboxArrow.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /Profile Folder/chrome/frameworks/zuneMetro/partials/controls/_breadcrumbbar.scss: -------------------------------------------------------------------------------- 1 | :root { 2 | --breadcrumbbarArrow: rgba(0,0,0,.75); 3 | } 4 | 5 | breadcrumbbar { 6 | margin-top: 4px; 7 | gap: 14px; 8 | text-transform: uppercase; 9 | -moz-window-dragging: no-drag !important; 10 | 11 | // prepare for animation 12 | opacity: 0; 13 | transform: translateX(-20px); 14 | 15 | // animation settings 16 | animation-name: fadeInLeftToRight; 17 | animation-duration: 400ms; 18 | animation-fill-mode: forwards; 19 | 20 | item { 21 | display: none; 22 | gap: 14px; 23 | 24 | &:hover { 25 | >label { 26 | opacity: .5 !important; 27 | } 28 | } 29 | 30 | &:not(:first-of-type) { 31 | &::before { 32 | content: url("chrome://userchrome/content/frameworks/zuneMetro/resources/breadcrumb-arrow.svg"); 33 | fill: currentColor; 34 | color: var(--breadcrumbbarArrow); 35 | height: 8px; 36 | width: 6.5px; 37 | 38 | // prepare for animation 39 | opacity: 0; 40 | transform: translateX(-20px); 41 | 42 | // animation settings 43 | animation-name: fadeInLeftToRight; 44 | animation-duration: 400ms; 45 | animation-fill-mode: forwards; 46 | } 47 | } 48 | 49 | &.active { 50 | font-weight: bold; 51 | color: var(--accentFirst); 52 | } 53 | 54 | >label { 55 | // prepare for animation 56 | opacity: 0; 57 | transform: translateX(-20px); 58 | 59 | // animation settings 60 | animation-name: fadeInLeftToRight; 61 | animation-delay: 240ms; 62 | animation-duration: 400ms; 63 | animation-fill-mode: forwards; 64 | } 65 | } 66 | } -------------------------------------------------------------------------------- /Profile Folder/chrome/JS/BeautyFox_downloadsWindow.uc.js: -------------------------------------------------------------------------------- 1 | // ==UserScript== 2 | // @name BeautyFox - Downloads Window 3 | // @description Styles the Downloads window to resemble the one from Internet Explorer 9+. 4 | // @include chrome://browser/content/places/places.xhtml 5 | // ==/UserScript== 6 | 7 | function styleDownloads() { 8 | if (!document.getElementById('downloadsListBox').getAttribute('hidden')) { 9 | const places = document.getElementById('places'); 10 | places.setAttribute('title', getComputedStyle(document.documentElement).getPropertyValue('--label-view-downloads') + 'Windows Internet Explorer'); 11 | 12 | const style = document.createElement('link'); 13 | style.setAttribute('rel','stylesheet'); 14 | style.setAttribute('href','chrome://userchrome/content/partials/content/downloads.css'); 15 | 16 | places.appendChild(style); 17 | 18 | const placesToolbar = document.getElementById('placesToolbar'); 19 | placesToolbar.setAttribute('data-before', getComputedStyle(document.documentElement).getPropertyValue('--label-view-n-track-your-downloads')); 20 | 21 | const closeButton = document.createXULElement('toolbarbutton'); 22 | closeButton.id = 'closeButton'; 23 | closeButton.setAttribute('label', 'Close'); 24 | closeButton.setAttribute('oncommand', 'window.close()'); 25 | placesToolbar.appendChild(closeButton); 26 | 27 | const clearDownloadsButton = document.getElementById('clearDownloadsButton'); 28 | clearDownloadsButton.setAttribute('label', 'Clear list'); 29 | } 30 | } 31 | 32 | window.addEventListener("load", function () { 33 | setTimeout(() => { 34 | styleDownloads(); 35 | }, 0); 36 | }) -------------------------------------------------------------------------------- /Profile Folder/chrome/windows/wizard/scripts/ui.js: -------------------------------------------------------------------------------- 1 | function updateExtendedTitlebar() { 2 | let currentPage = parseInt(document.querySelector('.pagesContainer').getAttribute('data-page')); 3 | 4 | let pageDescription = document.getElementById('description'); 5 | let breadcrumbbar = document.querySelector('breadcrumbbar'); 6 | 7 | if (currentPage == 1 || isNaN(currentPage)) { 8 | breadcrumbbar.style.display = 'none'; 9 | pageDescription.style.display = null; 10 | } else { 11 | breadcrumbbar.style.display = null; 12 | pageDescription.style.display = 'none'; 13 | } 14 | } 15 | updateExtendedTitlebar(); 16 | 17 | var chosenAppearance; 18 | const footer = document.querySelector('.footer'); 19 | document.addEventListener("pageChanged", () => { 20 | updateExtendedTitlebar(); 21 | 22 | let currentPage = parseInt(document.querySelector('.pagesContainer').getAttribute('data-page')); 23 | 24 | // #region Update variants page depending on the appearance chosen. 25 | if (currentPage == 3) { 26 | document.querySelectorAll('#windowContent > .pagesContainer > #page3 > vbox').forEach(element => { element.style.display = 'none'; }); 27 | document.querySelector('#windowContent > .pagesContainer > #page3 > #appearance'+ chosenAppearance).style.display = null; 28 | } 29 | // #endregion 30 | 31 | if (currentPage == 2 || 32 | currentPage == 3 || 33 | currentPage == 5) { 34 | footer.style.display = 'none'; 35 | } else { footer.style.display = null; } 36 | 37 | accentGradient.style.animation = null; 38 | setTimeout(() => { accentGradient.style.animation = 'slideYAccentGradient 2s cubic-bezier(0.22, 1, 0.36, 1)'; }, 100); 39 | }); -------------------------------------------------------------------------------- /Profile Folder/chrome/frameworks/zuneMetro/scripts/preview.js: -------------------------------------------------------------------------------- 1 | const settings = document.querySelectorAll("[description]"); 2 | const previewInfo = document.getElementById("previewInfo"); 3 | const previewImageContainer = document.getElementById("previewImage"); 4 | const previewImage = document.querySelector("#previewImage image"); 5 | let currentDescription; 6 | let currentImageSource; 7 | 8 | settings.forEach(setting => { 9 | setting.addEventListener("mouseover", (event) => { 10 | const isChild = setting.contains(event.relatedTarget); 11 | if (!isChild) { 12 | const description = setting.getAttribute("description"); 13 | const descriptionImage = setting.getAttribute("data-img"); 14 | 15 | if (description !== currentDescription || descriptionImage !== currentImageSource) { 16 | previewInfo.classList.remove("fadeInLeftToRight"); 17 | previewImageContainer.classList.remove("fadeInLeftToRight"); 18 | previewImageContainer.style.display = descriptionImage ? null : 'none'; 19 | 20 | setTimeout(() => { 21 | previewInfo.textContent = description; 22 | previewImage.setAttribute("src", descriptionImage); 23 | previewInfo.classList.add("fadeInLeftToRight"); 24 | previewImageContainer.classList.add("fadeInLeftToRight"); 25 | 26 | currentDescription = description; 27 | currentImageSource = descriptionImage; 28 | }, 50); 29 | } 30 | } 31 | }); 32 | }); 33 | -------------------------------------------------------------------------------- /Profile Folder/chrome/windows/saveAs/style.css: -------------------------------------------------------------------------------- 1 | window { 2 | font-family: Microsoft Sans Serif, Tahoma, "Segoe UI", Geneva, Verdana, sans-serif !important; 3 | font-size: 8pt !important; 4 | } 5 | 6 | dialog { 7 | padding: 0; 8 | padding-block-start: 17px; 9 | padding-inline-start: 15px; 10 | padding-inline-end: 18px; 11 | } 12 | 13 | #contentTypeImage { 14 | margin-right: 32px; 15 | } 16 | 17 | .labelTitle { 18 | text-align: right; 19 | padding-right: 6px; 20 | } 21 | 22 | .header { 23 | margin: 0; 24 | } 25 | 26 | #intro { 27 | margin-bottom: 13px; 28 | } 29 | 30 | #source { 31 | font-weight: bold; 32 | } 33 | 34 | td { 35 | padding-bottom: 4px; 36 | max-width: 256px; 37 | } 38 | 39 | #normalBox { 40 | margin-top: 14px; 41 | margin-bottom: 17px; 42 | } 43 | 44 | .warning { 45 | margin-top: 25px; 46 | } 47 | 48 | hr { 49 | border: none; 50 | border-top: 1px solid rgb(160, 160, 160); 51 | border-bottom: 1px solid white; 52 | } 53 | 54 | #warningContainer { 55 | padding-inline-start: 15px; 56 | padding-inline-end: 18px; 57 | padding-block-start: 14px; 58 | padding-block-end: 17px; 59 | } 60 | 61 | #warningInfo { 62 | line-height: 13px; 63 | } 64 | #warningInfo label { 65 | display: inline; 66 | margin: 0; 67 | } 68 | 69 | #contentTypeImage, 70 | #warningIcon { 71 | height: 32px; 72 | width: 32px; 73 | } 74 | 75 | #warningIcon { 76 | margin-right: 13px; 77 | } 78 | 79 | menulist { 80 | margin: 0; 81 | padding: 0; 82 | max-height: 21px; 83 | margin-left: 25px; 84 | } 85 | 86 | radio, 87 | checkbox { 88 | margin: 0; 89 | padding: 0; 90 | }/*# sourceMappingURL=style.css.map */ -------------------------------------------------------------------------------- /Profile Folder/chrome/JS/BeautyFox_FunctionsLoader.uc.js: -------------------------------------------------------------------------------- 1 | // ==UserScript== 2 | // @name BeautyFox - Functions Loader 3 | // @description Loads functions after "load" so no issues arise. 4 | // @author AngelBruni 5 | // @loadorder 2 6 | // ==/UserScript== 7 | 8 | const { ctypes } = Components.utils.import("resource://gre/modules/ctypes.jsm", {}); 9 | 10 | if (location == "chrome://browser/content/browser.xhtml" || location == "chrome://bfwindows/content/options/index.xhtml") { 11 | function executeFunctions() { 12 | // TODO: Change menu entries with IE ones; 13 | // TODO: Modals to dialogs; 14 | // TODO: Make Windows-only code execute only in Windows. 15 | launchBeautyFoxWizard(); 16 | setNavButtonsRadius(); 17 | createFeedbackButton(); 18 | createNewAndEndToolbar(); 19 | fixTabs(); 20 | urlbarContainerBackgroundOnMouseAttrs(); 21 | removeReloadWhenTyping(); 22 | changeUrlbarFakeDropdownStyling(); 23 | addEllipsesSearch(); 24 | insertMSEdgeNewTabButton(); 25 | updateSettingsAppearance(); 26 | createFavouritesSidebarButton(); 27 | updateBookmarkAppearance(); 28 | createAddToBookmarksBarButton(); 29 | moveExtensionsBtn(); 30 | createCommandBar(); 31 | updateCommandbarAppearance(); 32 | createCBHomeButton(); 33 | createCBPrintButton(); 34 | createCBReadMailButton() 35 | downloadsButton(); 36 | createFakeTitlebarSpace(); 37 | createStatusbar(); 38 | updateStatusbarAppearance(); 39 | loadLocale(); 40 | 41 | setTimeout(() => { applyTranslations(); }, 1000); 42 | 43 | console.info("Functions executed."); 44 | } 45 | 46 | window.addEventListener("load", executeFunctions) 47 | } 48 | 49 | -------------------------------------------------------------------------------- /Profile Folder/chrome/JS/BeautyFox_extensionsButton.uc.js: -------------------------------------------------------------------------------- 1 | // ==UserScript== 2 | // @name BeautyFox - Extensions Button 3 | // @author AngelBruni 4 | // @loadorder 3 5 | // ==/UserScript== 6 | 7 | function moveExtensionsBtn() { 8 | let unifiedExtensionsButton = document.getElementById("unified-extensions-button"); 9 | 10 | if (unifiedExtensionsButton) { 11 | let personalBookmarks = document.getElementById("personal-bookmarks"); 12 | let personalToolbar = document.getElementById("PersonalToolbar"); 13 | let endToolbar = document.getElementById("endToolbar"); 14 | let IEMenuButton = document.getElementById("IEMenuButton"); 15 | 16 | unifiedExtensionsButton.setAttribute("locale", "getMoreAddons"); 17 | unifiedExtensionsButton.style.cssText = null; 18 | 19 | switch (pref("BeautyFox.option.storedExtensionsButtonChoice").tryGet.int()) { 20 | case 0: 21 | unifiedExtensionsButton.style.cssText = 'appearance: none !important; max-width: 0 !important; margin: 0 !important; padding: 0 !important; overflow: hidden !important; position: absolute; opacity: 0; pointer-events: none;'; 22 | break; 23 | case 1: 24 | if (personalBookmarks && personalToolbar) { 25 | unifiedExtensionsButton.parentNode.removeChild(unifiedExtensionsButton); 26 | personalToolbar.insertBefore(unifiedExtensionsButton, personalBookmarks); 27 | } 28 | break; 29 | case 2: 30 | if (endToolbar && IEMenuButton) { 31 | unifiedExtensionsButton.parentNode.removeChild(unifiedExtensionsButton); 32 | endToolbar.insertBefore(unifiedExtensionsButton, IEMenuButton); 33 | } 34 | } 35 | } 36 | } -------------------------------------------------------------------------------- /Profile Folder/chrome/temppages/changelogs/b4.3.2.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | What's new in BeautyFox Beta 4.3.2 6 | 7 | 8 | 9 | < Changelogs list 10 |

What's new in BeautyFox Beta 4.3.2

11 | 25 | 26 | -------------------------------------------------------------------------------- /Profile Folder/chrome/frameworks/zuneMetro/partials/frame/_modal.scss: -------------------------------------------------------------------------------- 1 | :root { 2 | --modal: linear-gradient(130deg, rgba(254,254,254,1) 0%, rgba(238,238,238,1) 100%); 3 | --modalShadow: rgba(0, 0, 0, 0.34); 4 | } 5 | 6 | #windowStyling { 7 | > #modalContainer { 8 | opacity: 0; 9 | position: absolute; 10 | display: flex; 11 | left: 0; 12 | top: 0; 13 | width: 100%; 14 | height: 100%; 15 | box-sizing: border-box; 16 | background-color: rgba(0,0,0,.5); 17 | transition: opacity .2s linear; 18 | pointer-events: none; 19 | z-index: 1; 20 | 21 | > .modal { 22 | display: none; 23 | margin-top: auto; 24 | margin-bottom: auto; 25 | min-height: 206px; 26 | width: inherit; 27 | background: var(--modal); 28 | box-shadow: 0px 0px 12px 0px var(--modalShadow); 29 | 30 | > .modalContent { 31 | margin-inline: auto; 32 | max-width: 819px; 33 | width: 100%; 34 | flex: 1; 35 | padding: 12px 24px 24px; 36 | 37 | > label { 38 | position: relative; 39 | 40 | &:first-of-type { 41 | font-size: 24pt; 42 | margin-block-end: 8px; 43 | text-transform: uppercase; 44 | 45 | &::before { 46 | content: ''; 47 | position: absolute; 48 | top: 0; 49 | left: 1px; 50 | height: 6px; 51 | width: 109px; 52 | background: linear-gradient(90deg, var(--accentGradient)); 53 | background-size: 300% 100%; 54 | background-position-x: 100%; 55 | animation: slideXAccentGradient 1s forwards .2s; 56 | } 57 | } 58 | } 59 | 60 | > .footer { 61 | padding-inline: 0; 62 | height: unset; 63 | } 64 | } 65 | } 66 | } 67 | } -------------------------------------------------------------------------------- /Profile Folder/chrome/frameworks/zuneMetro/partials/controls/_tile.scss: -------------------------------------------------------------------------------- 1 | :root { 2 | --tileOuterBorder: rgba(0, 0, 0, .5); 3 | --tileInnerBorder: rgba(255, 255, 255, .2); 4 | --tileLabel: black; 5 | } 6 | 7 | .tilesContainer { 8 | margin-top: 31px; 9 | gap: 10px; 10 | 11 | > tile { 12 | flex: 1; 13 | } 14 | } 15 | 16 | tile { 17 | display: flex; 18 | flex-direction: column; 19 | 20 | .tileArtPerspective { 21 | perspective: 300px; 22 | } 23 | 24 | .tileArt { 25 | position: relative; 26 | border: 1px solid var(--tileOuterBorder); 27 | background: linear-gradient(135deg, var(--accentFirst) 0%, color-mix(in srgb, var(--accentFirst) 70%, black) 100%); 28 | margin-bottom: 14px; 29 | transition: transform .1s; 30 | overflow: hidden; 31 | 32 | &::after { 33 | content: ''; 34 | position: absolute; 35 | top: 0; 36 | left: 0; 37 | width: 100%; 38 | height: 100%; 39 | border: 1px solid var(--tileInnerBorder); 40 | } 41 | 42 | .glare { 43 | position: absolute; 44 | height: 130px; 45 | width: 130px; 46 | transform: translate(-50%, -50%); 47 | mask-image: radial-gradient(rgb(0, 0, 0) 0%, transparent 65%); 48 | backdrop-filter: brightness(1.5); 49 | opacity: 0; 50 | z-index: 2; 51 | transition: opacity .5s; 52 | } 53 | } 54 | 55 | label { 56 | color: var(--tileLabel); 57 | font-weight: bold; 58 | text-transform: uppercase; 59 | font-size: 9pt; 60 | } 61 | 62 | &:hover { 63 | .tileArt { 64 | outline: 3px solid var(--accentFirst); 65 | 66 | .glare { 67 | opacity: 1; 68 | transition: opacity .1s; 69 | } 70 | } 71 | 72 | label { 73 | color: var(--accentFirst) 74 | } 75 | } 76 | } -------------------------------------------------------------------------------- /Profile Folder/chrome/windows/saveAs/style.scss: -------------------------------------------------------------------------------- 1 | window { 2 | font-family: Microsoft Sans Serif, Tahoma, "Segoe UI", Geneva, Verdana, sans-serif !important; 3 | font-size: 8pt !important; 4 | } 5 | 6 | dialog { 7 | padding: 0; 8 | padding-block-start: 17px; 9 | padding-inline-start: 15px; 10 | padding-inline-end: 18px; 11 | } 12 | 13 | #contentTypeImage { 14 | margin-right: 32px; 15 | } 16 | 17 | .labelTitle { 18 | text-align: right; 19 | padding-right: 6px; 20 | } 21 | 22 | .header { 23 | margin: 0; 24 | } 25 | 26 | #intro { 27 | margin-bottom: 13px; 28 | } 29 | 30 | #source { 31 | font-weight: bold; 32 | } 33 | 34 | td { 35 | padding-bottom: 4px; 36 | max-width: 256px; 37 | } 38 | 39 | #normalBox { 40 | margin-top: 14px; 41 | margin-bottom: 17px; 42 | } 43 | 44 | .warning { 45 | margin-top: 25px; 46 | } 47 | 48 | hr { 49 | border: none; 50 | border-top: 1px solid rgb(160,160,160); 51 | border-bottom: 1px solid white; 52 | } 53 | 54 | #warningContainer { 55 | padding-inline-start: 15px; 56 | padding-inline-end: 18px; 57 | 58 | padding-block-start: 14px; 59 | padding-block-end: 17px; 60 | } 61 | 62 | #warningInfo { 63 | line-height: 13px; 64 | 65 | label { 66 | display: inline; 67 | margin: 0; 68 | } 69 | } 70 | 71 | #contentTypeImage, 72 | #warningIcon { 73 | height: 32px; 74 | width: 32px; 75 | } 76 | 77 | #warningIcon { 78 | margin-right: 13px; 79 | } 80 | 81 | menulist { 82 | margin: 0; 83 | padding: 0; 84 | max-height: 21px; 85 | margin-left: 25px; 86 | } 87 | 88 | radio, 89 | checkbox { 90 | margin: 0; 91 | padding: 0; 92 | } -------------------------------------------------------------------------------- /Profile Folder/chrome/windows/options/scripts/ui.js: -------------------------------------------------------------------------------- 1 | function showRestartModal() { 2 | bDoNotRunWizardInNextStart ? modal("restartModal").show() : zuneClose(); 3 | } 4 | 5 | if (isWindowsClassicThemeEnabled) { 6 | document.querySelectorAll(".disableClassicTheme").forEach(function(element) { 7 | element.setAttribute("disabled", true); 8 | }); 9 | } 10 | if (!isWindowsCompositorEnabled) { 11 | document.querySelectorAll(".disableBasicTheme").forEach(function(element) { 12 | element.setAttribute("disabled", true); 13 | }); 14 | } 15 | 16 | if (!checkRegKeyExistence("SOFTWARE\\AWM")) 17 | document.querySelector("#customColourMethodForUISelector [value='3']").style.display = 'none'; 18 | 19 | if (OSName == "Windows NT 6.0") 20 | document.querySelector("#customColourMethodForUISelector [value='2']").style.display = 'none'; 21 | 22 | if (OSName !== "Windows NT 10.0") { 23 | document.querySelector("#iForceAeroSupport").style.display = 'none'; 24 | document.querySelector("#customColourMethodForUISelector [value='3']").style.display = 'none'; 25 | document.querySelector("#customColourMethodForUISelector [value='4']").style.display = 'none'; 26 | } 27 | 28 | function updateTitlebarAppearance() { 29 | document.documentElement.removeAttribute("appearance"); 30 | document.documentElement.setAttribute("appearance", parseInt(document.getElementById("appearanceSelector").getAttribute("value"))); 31 | } 32 | updateTitlebarAppearance() 33 | 34 | function updateCustomColourMethodSection() { 35 | document.getElementById("customColourMethodSection").setAttribute("method", parseInt(document.getElementById("customColourMethodForUISelector").getAttribute("value"))); 36 | } 37 | updateCustomColourMethodSection(); -------------------------------------------------------------------------------- /Profile Folder/chrome/resources/userChrome.au.scss: -------------------------------------------------------------------------------- 1 | /* This example file is supposed to be loaded as author style sheet. Notice that we can use ::part() ::host() etc. selectors here while they are unavailable in user stylesheets. */ 2 | 3 | /* Default to xul namespace */ 4 | @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); 5 | 6 | /* Allow selecting html elements with named namespace selector */ 7 | @namespace html url("http://www.w3.org/1999/xhtml"); 8 | 9 | /* Example - this creates a small dot to appear in the top left corner of devtools-button popup - but not in any other panel */ 10 | :is(:not(.panel-no-padding)):is(panel, menupopup)[orient="vertical"]::part(content) { 11 | background: transparent !important; 12 | appearance: menupopup; 13 | 14 | @media (-moz-windows-classic) { 15 | background: -moz-Dialog !important; 16 | padding: 1px !important; 17 | border: 2px solid transparent !important; 18 | border-image-source: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA2IDYiIHdpZHRoPSI2IiBoZWlnaHQ9IjYiPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSI2IiBoZWlnaHQ9IjYiIGZpbGw9IlRocmVlRERhcmtTaGFkb3ciLz48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iNSIgaGVpZ2h0PSI1IiBmaWxsPSJUaHJlZURMaWdodFNoYWRvdyIvPjxyZWN0IHg9IjEiIHk9IjEiIHdpZHRoPSI0IiBoZWlnaHQ9IjQiIGZpbGw9IlRocmVlRFNoYWRvdyIvPjxyZWN0IHg9IjEiIHk9IjEiIHdpZHRoPSIzIiBoZWlnaHQ9IjMiIGZpbGw9IlRocmVlREhpZ2hsaWdodCIvPjxyZWN0IHg9IjIiIHk9IjIiIHdpZHRoPSIyIiBoZWlnaHQ9IjIiIGZpbGw9IlRocmVlREZhY2UiLz48L3N2Zz4=") !important; 19 | border-image-slice: 2 !important; 20 | border-image-width: 2px !important; 21 | border-image-repeat: repeat !important; 22 | } 23 | } -------------------------------------------------------------------------------- /Profile Folder/chrome/styles/dialog.css.map: -------------------------------------------------------------------------------- 1 | {"version":3,"sources":["dialog.scss","dialog.css"],"names":[],"mappings":"AAAA;;6DAAA;AAIA;;2EAAA;AAIA,+EAAA;AAEA,uBAAA;AAEA;EACI,uBAAA;EACA,wBAAA;ACHJ;;ADMA,+BAAA;AAEA;EACI,UAAA;ACJJ;;ADOA,uBAAA;AAEA;EACI,QAAA;ACLJ","file":"dialog.css","sourcesContent":["/* This Source Code Form is subject to the terms of the Mozilla Public\r\n * License, v. 2.0. If a copy of the MPL was not distributed with this\r\n * file, You can obtain one at http://mozilla.org/MPL/2.0/. */\r\n\r\n/* ===== dialog.css =====================================================\r\n == Styles used by the XUL dialog element.\r\n ======================================================================= */\r\n\r\n@namespace url(\"http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul\");\r\n\r\n/* ::::: dialog ::::: */\r\n\r\n:host {\r\n padding-block: 8px 10px;\r\n padding-inline: 8px 10px;\r\n}\r\n\r\n/* ::::: dialog buttons ::::: */\r\n\r\nbutton {\r\n font: menu;\r\n}\r\n\r\n/* ::::: footer ::::: */\r\n\r\n.dialog-button-box {\r\n gap: 8px;\r\n}","/* This Source Code Form is subject to the terms of the Mozilla Public\n * License, v. 2.0. If a copy of the MPL was not distributed with this\n * file, You can obtain one at http://mozilla.org/MPL/2.0/. */\n/* ===== dialog.css =====================================================\n == Styles used by the XUL dialog element.\n ======================================================================= */\n@namespace url(\"http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul\");\n/* ::::: dialog ::::: */\n:host {\n padding-block: 8px 10px;\n padding-inline: 8px 10px;\n}\n\n/* ::::: dialog buttons ::::: */\nbutton {\n font: menu;\n}\n\n/* ::::: footer ::::: */\n.dialog-button-box {\n gap: 8px;\n}"]} -------------------------------------------------------------------------------- /Profile Folder/chrome/JS/changeTitlebarText.uc.js: -------------------------------------------------------------------------------- 1 | // ==UserScript== 2 | // @name Change Titlebar Text 3 | // @description Changes Firefox's Titlebar Text 4 | // @author Travis 5 | // @include main 6 | // ==/UserScript== 7 | 8 | 9 | // Mozilla Firefox's window name (e.g. Example - Internet Explorer) 10 | var TitlebarText = "Internet Explorer"; 11 | // Private Browsing's label (e.g. Example - Internet Explorer [InPrivate]) 12 | var PrivateBrowsingLabel = "[InPrivate]"; 13 | 14 | var ReplaceFirefoxTitlebar = { 15 | init: function () { 16 | try { 17 | function updateTitle() { 18 | function setAttributes(element, attributes) { 19 | Object.keys(attributes).forEach(attr => { 20 | element.setAttribute(attr, attributes[attr]); 21 | }); 22 | } 23 | const attributes = { 24 | "data-content-title-default": "CONTENTTITLE - " + TitlebarText + "", 25 | "data-title-default": "" + TitlebarText + "", 26 | "data-content-title-private": "CONTENTTITLE - " + TitlebarText + " - " + PrivateBrowsingLabel + "", 27 | "data-title-private": "" + TitlebarText + " - " + PrivateBrowsingLabel + "", 28 | }; 29 | const mainwindow = document.getElementById("main-window"); 30 | setAttributes(mainwindow, attributes); 31 | } 32 | updateTitle(); 33 | 34 | document.addEventListener("TabAttrModified", updateTitle(), false); 35 | document.addEventListener('TabSelect', updateTitle(), false); 36 | document.addEventListener('TabOpen', updateTitle(), false); 37 | document.addEventListener('TabClose', updateTitle(), false); 38 | document.addEventListener('load', updateTitle(), false); 39 | } catch (e) { 40 | console.error(e) 41 | } 42 | } 43 | }; 44 | 45 | document.addEventListener("DOMContentLoaded", ReplaceFirefoxTitlebar.init(), false); -------------------------------------------------------------------------------- /Profile Folder/chrome/temppages/changelogs/b4.3.1.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | What's new in BeautyFox Beta 4.3.1 6 | 7 | 8 | 9 | < Changelogs list 10 |

What's new in BeautyFox Beta 4.3.1

11 | 30 | 31 | -------------------------------------------------------------------------------- /Profile Folder/chrome/partials/chrome/_localisation.scss: -------------------------------------------------------------------------------- 1 | // TODO: This is dumb, get rid of it. 2 | 3 | :root { 4 | --label-view-downloads: View Downloads - ; 5 | --label-view-n-track-your-downloads: View and track your downloads; 6 | 7 | --get-more-add-ons-label: "Get More Add-ons"; 8 | 9 | --feeds-label: "Feeds"; 10 | 11 | --find-label: "Find:"; 12 | --previous-label: "Previous"; 13 | --next-label: "Next"; 14 | 15 | } 16 | 17 | window, 18 | html { 19 | &[lang*="pt"] { 20 | --get-more-add-ons-label: "Mais extensões"; 21 | 22 | --find-label: "Buscar:"; 23 | --previous-label: "Anterior"; 24 | --next-label: "Seguinte"; 25 | } 26 | 27 | &[lang="pt-BR"] { 28 | --label-view-downloads: Exibir Downloads - ; 29 | --label-view-n-track-your-downloads: Exibir e acompanhar seus downloads; 30 | } 31 | 32 | &[lang="pt-PT"] { 33 | --label-view-downloads: Exibir Transferências - ; 34 | --label-view-n-track-your-downloads: Ver e controlar tranferências; 35 | } 36 | 37 | &[lang*="es"] { 38 | --label-view-downloads: Ver descargas: ; 39 | --label-view-n-track-your-downloads: Ver y seguir sus descargas; 40 | 41 | --get-more-add-ons-label: "Más complementos"; 42 | 43 | --feeds-label: "Fuentes"; 44 | 45 | --find-label: "Buscar:"; 46 | --previous-label: "Anterior"; 47 | --next-label: "Siguiente"; 48 | 49 | @supports -moz-bool-pref("BeautyFox.appearance.IE10") { 50 | --label-view-n-track-your-downloads: Ver y seguir tus descargas; 51 | } 52 | } 53 | 54 | &[lang="ja"] { 55 | --label-view-downloads: ダウンロードの表紙 - ; 56 | --label-view-n-track-your-downloads: ダウンロードの表紙と追跡; 57 | } 58 | } -------------------------------------------------------------------------------- /Profile Folder/chrome/JS/BeautyFox_aboutPageReplacer.uc.js: -------------------------------------------------------------------------------- 1 | // ==UserScript== 2 | // @name BeautyFox - About Page Replacer 3 | // @author AngelBruni 4 | // @description Registers custom about: pages with desired URLs. 5 | // ==/UserScript== 6 | 7 | const customAboutPages = { 8 | "home": "chrome://userchrome/content/pages/newTabHome/index.xhtml", 9 | "newtab": "chrome://userchrome/content/pages/newTabHome/index.xhtml", 10 | "tabs": "chrome://userchrome/content/pages/newTabHome/index.xhtml", 11 | 12 | "privatebrowsing": "chrome://userchrome/content/pages/privateBrowsing/index.xhtml", 13 | "inprivate": "chrome://userchrome/content/pages/privateBrowsing/index.xhtml", 14 | }; 15 | 16 | function customAboutPage(urlString) { 17 | this._uri = Services.io.newURI(urlString); 18 | } 19 | 20 | customAboutPage.prototype = { 21 | get uri() { return this._uri; }, 22 | newChannel(_uri, loadInfo) { 23 | const ch = Services.io.newChannelFromURIWithLoadInfo(this.uri, loadInfo); 24 | ch.owner = Services.scriptSecurityManager.getSystemPrincipal(); 25 | return ch; 26 | }, 27 | getURIFlags(_uri) { return Ci.nsIAboutModule.ALLOW_SCRIPT | Ci.nsIAboutModule.IS_SECURE_CHROME_UI; }, 28 | getChromeURI(_uri) { return this.uri; }, 29 | QueryInterface: ChromeUtils.generateQI(["nsIAboutModule"]), 30 | }; 31 | 32 | for (let aboutKey in customAboutPages) { 33 | let AboutModuleFactory = { 34 | createInstance(aIID) { return new customAboutPage(customAboutPages[aboutKey]).QueryInterface(aIID); }, 35 | QueryInterface: ChromeUtils.generateQI(["nsIFactory"]), 36 | }; 37 | 38 | Components.manager.QueryInterface(Ci.nsIComponentRegistrar).registerFactory( 39 | Components.ID(Services.uuid.generateUUID().toString()), 40 | `about:${aboutKey}`, 41 | `@mozilla.org/network/protocol/about;1?what=${aboutKey}`, 42 | AboutModuleFactory 43 | ); 44 | } -------------------------------------------------------------------------------- /Profile Folder/chrome/locale/ko/wizard.dtd: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /Profile Folder/chrome/resources/userChrome.au.css: -------------------------------------------------------------------------------- 1 | /* This example file is supposed to be loaded as author style sheet. Notice that we can use ::part() ::host() etc. selectors here while they are unavailable in user stylesheets. */ 2 | /* Default to xul namespace */ 3 | @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); 4 | /* Allow selecting html elements with named namespace selector */ 5 | @namespace html url("http://www.w3.org/1999/xhtml"); 6 | /* Example - this creates a small dot to appear in the top left corner of devtools-button popup - but not in any other panel */ 7 | :is(:not(.panel-no-padding)):is(panel, menupopup)[orient=vertical]::part(content) { 8 | background: transparent !important; 9 | -webkit-appearance: menupopup; 10 | -moz-appearance: menupopup; 11 | appearance: menupopup; 12 | } 13 | @media (-moz-windows-classic) { 14 | :is(:not(.panel-no-padding)):is(panel, menupopup)[orient=vertical]::part(content) { 15 | background: -moz-Dialog !important; 16 | padding: 1px !important; 17 | border: 2px solid transparent !important; 18 | border-image-source: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA2IDYiIHdpZHRoPSI2IiBoZWlnaHQ9IjYiPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSI2IiBoZWlnaHQ9IjYiIGZpbGw9IlRocmVlRERhcmtTaGFkb3ciLz48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iNSIgaGVpZ2h0PSI1IiBmaWxsPSJUaHJlZURMaWdodFNoYWRvdyIvPjxyZWN0IHg9IjEiIHk9IjEiIHdpZHRoPSI0IiBoZWlnaHQ9IjQiIGZpbGw9IlRocmVlRFNoYWRvdyIvPjxyZWN0IHg9IjEiIHk9IjEiIHdpZHRoPSIzIiBoZWlnaHQ9IjMiIGZpbGw9IlRocmVlREhpZ2hsaWdodCIvPjxyZWN0IHg9IjIiIHk9IjIiIHdpZHRoPSIyIiBoZWlnaHQ9IjIiIGZpbGw9IlRocmVlREZhY2UiLz48L3N2Zz4=") !important; 19 | border-image-slice: 2 !important; 20 | border-image-width: 2px !important; 21 | border-image-repeat: repeat !important; 22 | } 23 | }/*# sourceMappingURL=userChrome.au.css.map */ -------------------------------------------------------------------------------- /Profile Folder/chrome/temppages/changelogs/b4.3.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | What's new in BeautyFox Beta 4.3 6 | 7 | 8 | 9 | < Changelogs list 10 |

What's new in BeautyFox Beta 4.3

11 | 27 | 28 | -------------------------------------------------------------------------------- /Profile Folder/chrome/frameworks/zuneMetro/partials/controls/_button.scss: -------------------------------------------------------------------------------- 1 | :root { 2 | --buttonBorderHighlight: linear-gradient(0deg, color-mix(in srgb, var(--accentFirst) 70%, black) 75%, var(--accentFirst) 100%); 3 | --buttonBorder: #cccccc; 4 | 5 | --buttonNormalFirst: #E7E7E7; 6 | --buttonNormalSecond: #FFFFFF; 7 | 8 | --buttonNormal: linear-gradient(0deg, var(--buttonNormalFirst), var(--buttonNormalSecond)); 9 | --buttonHot: linear-gradient(0deg, color-mix(in srgb, var(--buttonNormalFirst) 92%, black), var(--buttonNormalFirst)); 10 | --buttonActive: linear-gradient(180deg, var(--buttonNormalFirst), var(--buttonNormalSecond)); 11 | 12 | --buttonLabel: #373A3D; 13 | --buttonFontSize: 8pt; 14 | 15 | --buttonRadius: 3px; 16 | --buttonBorderSize: 1px; 17 | --buttonHeight: 20px; 18 | } 19 | 20 | zuneButton { 21 | padding: var(--buttonBorderSize); 22 | width: max-content; 23 | background: var(--buttonBorderHighlight); 24 | color: var(--buttonLabel); 25 | font-weight: bold; 26 | text-transform: uppercase; 27 | font-size: var(--buttonFontSize); 28 | height: fit-content; 29 | border-radius: var(--buttonRadius); 30 | transition: transform .2s; 31 | 32 | > div { 33 | padding: 0 21px; 34 | min-height: var(--buttonHeight); 35 | background: var(--buttonNormal); 36 | border-radius: calc(var(--buttonRadius) - var(--buttonBorderSize)); 37 | align-items: center; 38 | justify-content: center; 39 | display: flex; 40 | min-width: 71px; 41 | box-sizing: border-box; 42 | 43 | > label { 44 | height: fit-content; 45 | } 46 | } 47 | 48 | &[disabled='true'] { 49 | background: var(--buttonBorder); 50 | } 51 | 52 | &:hover { 53 | > div { 54 | background: var(--buttonHot) 55 | } 56 | } 57 | 58 | &:active { 59 | transform: scale(.96); 60 | transition: transform 0s; 61 | 62 | > div { 63 | background: var(--buttonActive); 64 | } 65 | } 66 | } -------------------------------------------------------------------------------- /Profile Folder/chrome/pages/newTabHome/resources/bing.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 7 | 11 | 14 | 16 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /Profile Folder/chrome/images/forward_disabled.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | --------------------------------------------------------------------------------