├── .gitattributes ├── .github └── ISSUE_TEMPLATE │ └── bug_report.md ├── .gitignore ├── LICENSE ├── README.md ├── Sidebery └── sidebery-settings.json └── chrome ├── EdgyArc-fr ├── autohide-sidebar-modified.css ├── icons.css ├── icons │ ├── arrow.svg │ ├── bitwarden.svg │ ├── dr.svg │ ├── private-icon.svg │ └── ublock.svg ├── main.css ├── sidebery.css ├── translucent-arc.css ├── translucent-base.css └── urlbar-tweaks.css ├── content ├── common.css └── newtab.css ├── custom.css ├── global ├── browser.css ├── colors.css ├── popup.css ├── tree.css └── tweaks.css ├── icons ├── accessibility.svg ├── account-private.svg ├── account.svg ├── add-to-dictionary.svg ├── arrow-down.svg ├── arrow-filled-down.svg ├── arrow-filled-left.svg ├── arrow-filled-right.svg ├── arrow-left.svg ├── arrow-right.svg ├── arrow-up.svg ├── audio-save.svg ├── autoplay-media-blocked.svg ├── autoplay-media.svg ├── back.svg ├── bookmark-hollow.svg ├── bookmark-star-on-tray.svg ├── bookmark.svg ├── camera-blocked.svg ├── camera.svg ├── canvas-blocked.svg ├── canvas.svg ├── checkmark.svg ├── chevron.svg ├── close-9px.svg ├── close.svg ├── container-tab.svg ├── customize.svg ├── desktop-notification-blocked.svg ├── desktop-notification.svg ├── developer.svg ├── downloads.svg ├── duplicate-tab.svg ├── edit-copy-without-tracking.svg ├── edit-copy.svg ├── edit-cut.svg ├── edit-delete.svg ├── edit-paste.svg ├── edit-redo.svg ├── edit-select-all.svg ├── edit-undo.svg ├── edit.svg ├── extension-blocked.svg ├── extension.svg ├── firefox-view.svg ├── firefox.svg ├── folder.svg ├── forget.svg ├── forward.svg ├── fullscreen-exit.svg ├── fullscreen.svg ├── geo-blocked.svg ├── geo.svg ├── help.svg ├── history.svg ├── home.svg ├── icons.css ├── image-copy.svg ├── image-open.svg ├── image-save.svg ├── info.svg ├── inspect.svg ├── library.svg ├── link.svg ├── mail.svg ├── manage.svg ├── media-loop.svg ├── media-mute.svg ├── media-pause.svg ├── media-pip.svg ├── media-play.svg ├── media-speed.svg ├── media-unmute.svg ├── menu.svg ├── microphone-blocked.svg ├── microphone.svg ├── midi.svg ├── move-tab.svg ├── new-tab-image.svg ├── new-tab.svg ├── open.svg ├── page-portrait.svg ├── passwords.svg ├── paste-and-go.svg ├── permissions.svg ├── persistent-storage-blocked.svg ├── persistent-storage.svg ├── pin.svg ├── plus.svg ├── pocket-outline.svg ├── popup.svg ├── print.svg ├── private-window.svg ├── privateBrowsing.svg ├── reader-mode.svg ├── reload-to-stop.svg ├── reload.svg ├── report.svg ├── save.svg ├── screen-blocked.svg ├── screen.svg ├── screenshot.svg ├── search-glass.svg ├── search-page.svg ├── security-broken.svg ├── security-warning.svg ├── security.svg ├── send-to-device.svg ├── settings.svg ├── share.svg ├── sidebars-right.svg ├── sidebars.svg ├── source-code.svg ├── stop-to-reload.svg ├── tab-audio-blocked-small.svg ├── tab-audio-muted-small.svg ├── tab-audio-playing-small.svg ├── tab.svg ├── tag.svg ├── tool-profiler.svg ├── tracking-protection.svg ├── translate.svg ├── video-open.svg ├── video-save.svg ├── win11-close-dark.svg ├── win11-close.svg ├── win11-maximize.svg ├── win11-minimize.svg ├── win11-restore.svg ├── window.svg ├── xr-blocked.svg ├── xr.svg └── zoom-out.svg ├── toolbar ├── findbar.css ├── navbar.css ├── personalbar.css ├── tabbar.css └── urlbar.css ├── tweaks ├── hide-tabs-bar.css └── sidebery.css ├── userChrome.css └── userContent.css /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsyfriedchicken/EdgyArc-fr/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsyfriedchicken/EdgyArc-fr/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsyfriedchicken/EdgyArc-fr/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsyfriedchicken/EdgyArc-fr/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsyfriedchicken/EdgyArc-fr/HEAD/README.md -------------------------------------------------------------------------------- /Sidebery/sidebery-settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsyfriedchicken/EdgyArc-fr/HEAD/Sidebery/sidebery-settings.json -------------------------------------------------------------------------------- /chrome/EdgyArc-fr/autohide-sidebar-modified.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsyfriedchicken/EdgyArc-fr/HEAD/chrome/EdgyArc-fr/autohide-sidebar-modified.css -------------------------------------------------------------------------------- /chrome/EdgyArc-fr/icons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsyfriedchicken/EdgyArc-fr/HEAD/chrome/EdgyArc-fr/icons.css -------------------------------------------------------------------------------- /chrome/EdgyArc-fr/icons/arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsyfriedchicken/EdgyArc-fr/HEAD/chrome/EdgyArc-fr/icons/arrow.svg -------------------------------------------------------------------------------- /chrome/EdgyArc-fr/icons/bitwarden.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsyfriedchicken/EdgyArc-fr/HEAD/chrome/EdgyArc-fr/icons/bitwarden.svg -------------------------------------------------------------------------------- /chrome/EdgyArc-fr/icons/dr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsyfriedchicken/EdgyArc-fr/HEAD/chrome/EdgyArc-fr/icons/dr.svg -------------------------------------------------------------------------------- /chrome/EdgyArc-fr/icons/private-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsyfriedchicken/EdgyArc-fr/HEAD/chrome/EdgyArc-fr/icons/private-icon.svg -------------------------------------------------------------------------------- /chrome/EdgyArc-fr/icons/ublock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsyfriedchicken/EdgyArc-fr/HEAD/chrome/EdgyArc-fr/icons/ublock.svg -------------------------------------------------------------------------------- /chrome/EdgyArc-fr/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsyfriedchicken/EdgyArc-fr/HEAD/chrome/EdgyArc-fr/main.css -------------------------------------------------------------------------------- /chrome/EdgyArc-fr/sidebery.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsyfriedchicken/EdgyArc-fr/HEAD/chrome/EdgyArc-fr/sidebery.css -------------------------------------------------------------------------------- /chrome/EdgyArc-fr/translucent-arc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsyfriedchicken/EdgyArc-fr/HEAD/chrome/EdgyArc-fr/translucent-arc.css -------------------------------------------------------------------------------- /chrome/EdgyArc-fr/translucent-base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsyfriedchicken/EdgyArc-fr/HEAD/chrome/EdgyArc-fr/translucent-base.css -------------------------------------------------------------------------------- /chrome/EdgyArc-fr/urlbar-tweaks.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsyfriedchicken/EdgyArc-fr/HEAD/chrome/EdgyArc-fr/urlbar-tweaks.css -------------------------------------------------------------------------------- /chrome/content/common.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsyfriedchicken/EdgyArc-fr/HEAD/chrome/content/common.css -------------------------------------------------------------------------------- /chrome/content/newtab.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsyfriedchicken/EdgyArc-fr/HEAD/chrome/content/newtab.css -------------------------------------------------------------------------------- /chrome/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsyfriedchicken/EdgyArc-fr/HEAD/chrome/custom.css -------------------------------------------------------------------------------- /chrome/global/browser.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsyfriedchicken/EdgyArc-fr/HEAD/chrome/global/browser.css -------------------------------------------------------------------------------- /chrome/global/colors.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsyfriedchicken/EdgyArc-fr/HEAD/chrome/global/colors.css -------------------------------------------------------------------------------- /chrome/global/popup.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsyfriedchicken/EdgyArc-fr/HEAD/chrome/global/popup.css -------------------------------------------------------------------------------- /chrome/global/tree.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsyfriedchicken/EdgyArc-fr/HEAD/chrome/global/tree.css -------------------------------------------------------------------------------- /chrome/global/tweaks.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsyfriedchicken/EdgyArc-fr/HEAD/chrome/global/tweaks.css -------------------------------------------------------------------------------- /chrome/icons/accessibility.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsyfriedchicken/EdgyArc-fr/HEAD/chrome/icons/accessibility.svg -------------------------------------------------------------------------------- /chrome/icons/account-private.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsyfriedchicken/EdgyArc-fr/HEAD/chrome/icons/account-private.svg -------------------------------------------------------------------------------- /chrome/icons/account.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsyfriedchicken/EdgyArc-fr/HEAD/chrome/icons/account.svg -------------------------------------------------------------------------------- /chrome/icons/add-to-dictionary.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsyfriedchicken/EdgyArc-fr/HEAD/chrome/icons/add-to-dictionary.svg -------------------------------------------------------------------------------- /chrome/icons/arrow-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsyfriedchicken/EdgyArc-fr/HEAD/chrome/icons/arrow-down.svg -------------------------------------------------------------------------------- /chrome/icons/arrow-filled-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsyfriedchicken/EdgyArc-fr/HEAD/chrome/icons/arrow-filled-down.svg -------------------------------------------------------------------------------- /chrome/icons/arrow-filled-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsyfriedchicken/EdgyArc-fr/HEAD/chrome/icons/arrow-filled-left.svg -------------------------------------------------------------------------------- /chrome/icons/arrow-filled-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsyfriedchicken/EdgyArc-fr/HEAD/chrome/icons/arrow-filled-right.svg -------------------------------------------------------------------------------- /chrome/icons/arrow-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsyfriedchicken/EdgyArc-fr/HEAD/chrome/icons/arrow-left.svg -------------------------------------------------------------------------------- /chrome/icons/arrow-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsyfriedchicken/EdgyArc-fr/HEAD/chrome/icons/arrow-right.svg -------------------------------------------------------------------------------- /chrome/icons/arrow-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsyfriedchicken/EdgyArc-fr/HEAD/chrome/icons/arrow-up.svg -------------------------------------------------------------------------------- /chrome/icons/audio-save.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsyfriedchicken/EdgyArc-fr/HEAD/chrome/icons/audio-save.svg -------------------------------------------------------------------------------- /chrome/icons/autoplay-media-blocked.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsyfriedchicken/EdgyArc-fr/HEAD/chrome/icons/autoplay-media-blocked.svg -------------------------------------------------------------------------------- /chrome/icons/autoplay-media.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsyfriedchicken/EdgyArc-fr/HEAD/chrome/icons/autoplay-media.svg -------------------------------------------------------------------------------- /chrome/icons/back.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsyfriedchicken/EdgyArc-fr/HEAD/chrome/icons/back.svg -------------------------------------------------------------------------------- /chrome/icons/bookmark-hollow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsyfriedchicken/EdgyArc-fr/HEAD/chrome/icons/bookmark-hollow.svg -------------------------------------------------------------------------------- /chrome/icons/bookmark-star-on-tray.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsyfriedchicken/EdgyArc-fr/HEAD/chrome/icons/bookmark-star-on-tray.svg -------------------------------------------------------------------------------- /chrome/icons/bookmark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsyfriedchicken/EdgyArc-fr/HEAD/chrome/icons/bookmark.svg -------------------------------------------------------------------------------- /chrome/icons/camera-blocked.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsyfriedchicken/EdgyArc-fr/HEAD/chrome/icons/camera-blocked.svg -------------------------------------------------------------------------------- /chrome/icons/camera.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsyfriedchicken/EdgyArc-fr/HEAD/chrome/icons/camera.svg -------------------------------------------------------------------------------- /chrome/icons/canvas-blocked.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsyfriedchicken/EdgyArc-fr/HEAD/chrome/icons/canvas-blocked.svg -------------------------------------------------------------------------------- /chrome/icons/canvas.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsyfriedchicken/EdgyArc-fr/HEAD/chrome/icons/canvas.svg -------------------------------------------------------------------------------- /chrome/icons/checkmark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsyfriedchicken/EdgyArc-fr/HEAD/chrome/icons/checkmark.svg -------------------------------------------------------------------------------- /chrome/icons/chevron.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsyfriedchicken/EdgyArc-fr/HEAD/chrome/icons/chevron.svg -------------------------------------------------------------------------------- /chrome/icons/close-9px.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsyfriedchicken/EdgyArc-fr/HEAD/chrome/icons/close-9px.svg -------------------------------------------------------------------------------- /chrome/icons/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsyfriedchicken/EdgyArc-fr/HEAD/chrome/icons/close.svg -------------------------------------------------------------------------------- /chrome/icons/container-tab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsyfriedchicken/EdgyArc-fr/HEAD/chrome/icons/container-tab.svg -------------------------------------------------------------------------------- /chrome/icons/customize.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsyfriedchicken/EdgyArc-fr/HEAD/chrome/icons/customize.svg -------------------------------------------------------------------------------- /chrome/icons/desktop-notification-blocked.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsyfriedchicken/EdgyArc-fr/HEAD/chrome/icons/desktop-notification-blocked.svg -------------------------------------------------------------------------------- /chrome/icons/desktop-notification.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsyfriedchicken/EdgyArc-fr/HEAD/chrome/icons/desktop-notification.svg -------------------------------------------------------------------------------- /chrome/icons/developer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsyfriedchicken/EdgyArc-fr/HEAD/chrome/icons/developer.svg -------------------------------------------------------------------------------- /chrome/icons/downloads.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsyfriedchicken/EdgyArc-fr/HEAD/chrome/icons/downloads.svg -------------------------------------------------------------------------------- /chrome/icons/duplicate-tab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsyfriedchicken/EdgyArc-fr/HEAD/chrome/icons/duplicate-tab.svg -------------------------------------------------------------------------------- /chrome/icons/edit-copy-without-tracking.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsyfriedchicken/EdgyArc-fr/HEAD/chrome/icons/edit-copy-without-tracking.svg -------------------------------------------------------------------------------- /chrome/icons/edit-copy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsyfriedchicken/EdgyArc-fr/HEAD/chrome/icons/edit-copy.svg -------------------------------------------------------------------------------- /chrome/icons/edit-cut.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsyfriedchicken/EdgyArc-fr/HEAD/chrome/icons/edit-cut.svg -------------------------------------------------------------------------------- /chrome/icons/edit-delete.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsyfriedchicken/EdgyArc-fr/HEAD/chrome/icons/edit-delete.svg -------------------------------------------------------------------------------- /chrome/icons/edit-paste.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsyfriedchicken/EdgyArc-fr/HEAD/chrome/icons/edit-paste.svg -------------------------------------------------------------------------------- /chrome/icons/edit-redo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsyfriedchicken/EdgyArc-fr/HEAD/chrome/icons/edit-redo.svg -------------------------------------------------------------------------------- /chrome/icons/edit-select-all.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsyfriedchicken/EdgyArc-fr/HEAD/chrome/icons/edit-select-all.svg -------------------------------------------------------------------------------- /chrome/icons/edit-undo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsyfriedchicken/EdgyArc-fr/HEAD/chrome/icons/edit-undo.svg -------------------------------------------------------------------------------- /chrome/icons/edit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsyfriedchicken/EdgyArc-fr/HEAD/chrome/icons/edit.svg -------------------------------------------------------------------------------- /chrome/icons/extension-blocked.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsyfriedchicken/EdgyArc-fr/HEAD/chrome/icons/extension-blocked.svg -------------------------------------------------------------------------------- /chrome/icons/extension.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsyfriedchicken/EdgyArc-fr/HEAD/chrome/icons/extension.svg -------------------------------------------------------------------------------- /chrome/icons/firefox-view.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsyfriedchicken/EdgyArc-fr/HEAD/chrome/icons/firefox-view.svg -------------------------------------------------------------------------------- /chrome/icons/firefox.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsyfriedchicken/EdgyArc-fr/HEAD/chrome/icons/firefox.svg -------------------------------------------------------------------------------- /chrome/icons/folder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsyfriedchicken/EdgyArc-fr/HEAD/chrome/icons/folder.svg -------------------------------------------------------------------------------- /chrome/icons/forget.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsyfriedchicken/EdgyArc-fr/HEAD/chrome/icons/forget.svg -------------------------------------------------------------------------------- /chrome/icons/forward.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsyfriedchicken/EdgyArc-fr/HEAD/chrome/icons/forward.svg -------------------------------------------------------------------------------- /chrome/icons/fullscreen-exit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsyfriedchicken/EdgyArc-fr/HEAD/chrome/icons/fullscreen-exit.svg -------------------------------------------------------------------------------- /chrome/icons/fullscreen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsyfriedchicken/EdgyArc-fr/HEAD/chrome/icons/fullscreen.svg -------------------------------------------------------------------------------- /chrome/icons/geo-blocked.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsyfriedchicken/EdgyArc-fr/HEAD/chrome/icons/geo-blocked.svg -------------------------------------------------------------------------------- /chrome/icons/geo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsyfriedchicken/EdgyArc-fr/HEAD/chrome/icons/geo.svg -------------------------------------------------------------------------------- /chrome/icons/help.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsyfriedchicken/EdgyArc-fr/HEAD/chrome/icons/help.svg -------------------------------------------------------------------------------- /chrome/icons/history.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsyfriedchicken/EdgyArc-fr/HEAD/chrome/icons/history.svg -------------------------------------------------------------------------------- /chrome/icons/home.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsyfriedchicken/EdgyArc-fr/HEAD/chrome/icons/home.svg -------------------------------------------------------------------------------- /chrome/icons/icons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsyfriedchicken/EdgyArc-fr/HEAD/chrome/icons/icons.css -------------------------------------------------------------------------------- /chrome/icons/image-copy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsyfriedchicken/EdgyArc-fr/HEAD/chrome/icons/image-copy.svg -------------------------------------------------------------------------------- /chrome/icons/image-open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsyfriedchicken/EdgyArc-fr/HEAD/chrome/icons/image-open.svg -------------------------------------------------------------------------------- /chrome/icons/image-save.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsyfriedchicken/EdgyArc-fr/HEAD/chrome/icons/image-save.svg -------------------------------------------------------------------------------- /chrome/icons/info.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsyfriedchicken/EdgyArc-fr/HEAD/chrome/icons/info.svg -------------------------------------------------------------------------------- /chrome/icons/inspect.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsyfriedchicken/EdgyArc-fr/HEAD/chrome/icons/inspect.svg -------------------------------------------------------------------------------- /chrome/icons/library.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsyfriedchicken/EdgyArc-fr/HEAD/chrome/icons/library.svg -------------------------------------------------------------------------------- /chrome/icons/link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsyfriedchicken/EdgyArc-fr/HEAD/chrome/icons/link.svg -------------------------------------------------------------------------------- /chrome/icons/mail.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsyfriedchicken/EdgyArc-fr/HEAD/chrome/icons/mail.svg -------------------------------------------------------------------------------- /chrome/icons/manage.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsyfriedchicken/EdgyArc-fr/HEAD/chrome/icons/manage.svg -------------------------------------------------------------------------------- /chrome/icons/media-loop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsyfriedchicken/EdgyArc-fr/HEAD/chrome/icons/media-loop.svg -------------------------------------------------------------------------------- /chrome/icons/media-mute.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsyfriedchicken/EdgyArc-fr/HEAD/chrome/icons/media-mute.svg -------------------------------------------------------------------------------- /chrome/icons/media-pause.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsyfriedchicken/EdgyArc-fr/HEAD/chrome/icons/media-pause.svg -------------------------------------------------------------------------------- /chrome/icons/media-pip.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsyfriedchicken/EdgyArc-fr/HEAD/chrome/icons/media-pip.svg -------------------------------------------------------------------------------- /chrome/icons/media-play.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsyfriedchicken/EdgyArc-fr/HEAD/chrome/icons/media-play.svg -------------------------------------------------------------------------------- /chrome/icons/media-speed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsyfriedchicken/EdgyArc-fr/HEAD/chrome/icons/media-speed.svg -------------------------------------------------------------------------------- /chrome/icons/media-unmute.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsyfriedchicken/EdgyArc-fr/HEAD/chrome/icons/media-unmute.svg -------------------------------------------------------------------------------- /chrome/icons/menu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsyfriedchicken/EdgyArc-fr/HEAD/chrome/icons/menu.svg -------------------------------------------------------------------------------- /chrome/icons/microphone-blocked.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsyfriedchicken/EdgyArc-fr/HEAD/chrome/icons/microphone-blocked.svg -------------------------------------------------------------------------------- /chrome/icons/microphone.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsyfriedchicken/EdgyArc-fr/HEAD/chrome/icons/microphone.svg -------------------------------------------------------------------------------- /chrome/icons/midi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsyfriedchicken/EdgyArc-fr/HEAD/chrome/icons/midi.svg -------------------------------------------------------------------------------- /chrome/icons/move-tab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsyfriedchicken/EdgyArc-fr/HEAD/chrome/icons/move-tab.svg -------------------------------------------------------------------------------- /chrome/icons/new-tab-image.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsyfriedchicken/EdgyArc-fr/HEAD/chrome/icons/new-tab-image.svg -------------------------------------------------------------------------------- /chrome/icons/new-tab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsyfriedchicken/EdgyArc-fr/HEAD/chrome/icons/new-tab.svg -------------------------------------------------------------------------------- /chrome/icons/open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsyfriedchicken/EdgyArc-fr/HEAD/chrome/icons/open.svg -------------------------------------------------------------------------------- /chrome/icons/page-portrait.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsyfriedchicken/EdgyArc-fr/HEAD/chrome/icons/page-portrait.svg -------------------------------------------------------------------------------- /chrome/icons/passwords.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsyfriedchicken/EdgyArc-fr/HEAD/chrome/icons/passwords.svg -------------------------------------------------------------------------------- /chrome/icons/paste-and-go.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsyfriedchicken/EdgyArc-fr/HEAD/chrome/icons/paste-and-go.svg -------------------------------------------------------------------------------- /chrome/icons/permissions.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsyfriedchicken/EdgyArc-fr/HEAD/chrome/icons/permissions.svg -------------------------------------------------------------------------------- /chrome/icons/persistent-storage-blocked.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsyfriedchicken/EdgyArc-fr/HEAD/chrome/icons/persistent-storage-blocked.svg -------------------------------------------------------------------------------- /chrome/icons/persistent-storage.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsyfriedchicken/EdgyArc-fr/HEAD/chrome/icons/persistent-storage.svg -------------------------------------------------------------------------------- /chrome/icons/pin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsyfriedchicken/EdgyArc-fr/HEAD/chrome/icons/pin.svg -------------------------------------------------------------------------------- /chrome/icons/plus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsyfriedchicken/EdgyArc-fr/HEAD/chrome/icons/plus.svg -------------------------------------------------------------------------------- /chrome/icons/pocket-outline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsyfriedchicken/EdgyArc-fr/HEAD/chrome/icons/pocket-outline.svg -------------------------------------------------------------------------------- /chrome/icons/popup.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsyfriedchicken/EdgyArc-fr/HEAD/chrome/icons/popup.svg -------------------------------------------------------------------------------- /chrome/icons/print.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsyfriedchicken/EdgyArc-fr/HEAD/chrome/icons/print.svg -------------------------------------------------------------------------------- /chrome/icons/private-window.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsyfriedchicken/EdgyArc-fr/HEAD/chrome/icons/private-window.svg -------------------------------------------------------------------------------- /chrome/icons/privateBrowsing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsyfriedchicken/EdgyArc-fr/HEAD/chrome/icons/privateBrowsing.svg -------------------------------------------------------------------------------- /chrome/icons/reader-mode.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsyfriedchicken/EdgyArc-fr/HEAD/chrome/icons/reader-mode.svg -------------------------------------------------------------------------------- /chrome/icons/reload-to-stop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsyfriedchicken/EdgyArc-fr/HEAD/chrome/icons/reload-to-stop.svg -------------------------------------------------------------------------------- /chrome/icons/reload.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsyfriedchicken/EdgyArc-fr/HEAD/chrome/icons/reload.svg -------------------------------------------------------------------------------- /chrome/icons/report.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsyfriedchicken/EdgyArc-fr/HEAD/chrome/icons/report.svg -------------------------------------------------------------------------------- /chrome/icons/save.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsyfriedchicken/EdgyArc-fr/HEAD/chrome/icons/save.svg -------------------------------------------------------------------------------- /chrome/icons/screen-blocked.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsyfriedchicken/EdgyArc-fr/HEAD/chrome/icons/screen-blocked.svg -------------------------------------------------------------------------------- /chrome/icons/screen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsyfriedchicken/EdgyArc-fr/HEAD/chrome/icons/screen.svg -------------------------------------------------------------------------------- /chrome/icons/screenshot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsyfriedchicken/EdgyArc-fr/HEAD/chrome/icons/screenshot.svg -------------------------------------------------------------------------------- /chrome/icons/search-glass.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsyfriedchicken/EdgyArc-fr/HEAD/chrome/icons/search-glass.svg -------------------------------------------------------------------------------- /chrome/icons/search-page.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsyfriedchicken/EdgyArc-fr/HEAD/chrome/icons/search-page.svg -------------------------------------------------------------------------------- /chrome/icons/security-broken.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsyfriedchicken/EdgyArc-fr/HEAD/chrome/icons/security-broken.svg -------------------------------------------------------------------------------- /chrome/icons/security-warning.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsyfriedchicken/EdgyArc-fr/HEAD/chrome/icons/security-warning.svg -------------------------------------------------------------------------------- /chrome/icons/security.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsyfriedchicken/EdgyArc-fr/HEAD/chrome/icons/security.svg -------------------------------------------------------------------------------- /chrome/icons/send-to-device.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsyfriedchicken/EdgyArc-fr/HEAD/chrome/icons/send-to-device.svg -------------------------------------------------------------------------------- /chrome/icons/settings.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsyfriedchicken/EdgyArc-fr/HEAD/chrome/icons/settings.svg -------------------------------------------------------------------------------- /chrome/icons/share.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsyfriedchicken/EdgyArc-fr/HEAD/chrome/icons/share.svg -------------------------------------------------------------------------------- /chrome/icons/sidebars-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsyfriedchicken/EdgyArc-fr/HEAD/chrome/icons/sidebars-right.svg -------------------------------------------------------------------------------- /chrome/icons/sidebars.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsyfriedchicken/EdgyArc-fr/HEAD/chrome/icons/sidebars.svg -------------------------------------------------------------------------------- /chrome/icons/source-code.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsyfriedchicken/EdgyArc-fr/HEAD/chrome/icons/source-code.svg -------------------------------------------------------------------------------- /chrome/icons/stop-to-reload.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsyfriedchicken/EdgyArc-fr/HEAD/chrome/icons/stop-to-reload.svg -------------------------------------------------------------------------------- /chrome/icons/tab-audio-blocked-small.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsyfriedchicken/EdgyArc-fr/HEAD/chrome/icons/tab-audio-blocked-small.svg -------------------------------------------------------------------------------- /chrome/icons/tab-audio-muted-small.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsyfriedchicken/EdgyArc-fr/HEAD/chrome/icons/tab-audio-muted-small.svg -------------------------------------------------------------------------------- /chrome/icons/tab-audio-playing-small.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsyfriedchicken/EdgyArc-fr/HEAD/chrome/icons/tab-audio-playing-small.svg -------------------------------------------------------------------------------- /chrome/icons/tab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsyfriedchicken/EdgyArc-fr/HEAD/chrome/icons/tab.svg -------------------------------------------------------------------------------- /chrome/icons/tag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsyfriedchicken/EdgyArc-fr/HEAD/chrome/icons/tag.svg -------------------------------------------------------------------------------- /chrome/icons/tool-profiler.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsyfriedchicken/EdgyArc-fr/HEAD/chrome/icons/tool-profiler.svg -------------------------------------------------------------------------------- /chrome/icons/tracking-protection.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsyfriedchicken/EdgyArc-fr/HEAD/chrome/icons/tracking-protection.svg -------------------------------------------------------------------------------- /chrome/icons/translate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsyfriedchicken/EdgyArc-fr/HEAD/chrome/icons/translate.svg -------------------------------------------------------------------------------- /chrome/icons/video-open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsyfriedchicken/EdgyArc-fr/HEAD/chrome/icons/video-open.svg -------------------------------------------------------------------------------- /chrome/icons/video-save.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsyfriedchicken/EdgyArc-fr/HEAD/chrome/icons/video-save.svg -------------------------------------------------------------------------------- /chrome/icons/win11-close-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsyfriedchicken/EdgyArc-fr/HEAD/chrome/icons/win11-close-dark.svg -------------------------------------------------------------------------------- /chrome/icons/win11-close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsyfriedchicken/EdgyArc-fr/HEAD/chrome/icons/win11-close.svg -------------------------------------------------------------------------------- /chrome/icons/win11-maximize.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsyfriedchicken/EdgyArc-fr/HEAD/chrome/icons/win11-maximize.svg -------------------------------------------------------------------------------- /chrome/icons/win11-minimize.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsyfriedchicken/EdgyArc-fr/HEAD/chrome/icons/win11-minimize.svg -------------------------------------------------------------------------------- /chrome/icons/win11-restore.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsyfriedchicken/EdgyArc-fr/HEAD/chrome/icons/win11-restore.svg -------------------------------------------------------------------------------- /chrome/icons/window.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsyfriedchicken/EdgyArc-fr/HEAD/chrome/icons/window.svg -------------------------------------------------------------------------------- /chrome/icons/xr-blocked.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsyfriedchicken/EdgyArc-fr/HEAD/chrome/icons/xr-blocked.svg -------------------------------------------------------------------------------- /chrome/icons/xr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsyfriedchicken/EdgyArc-fr/HEAD/chrome/icons/xr.svg -------------------------------------------------------------------------------- /chrome/icons/zoom-out.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsyfriedchicken/EdgyArc-fr/HEAD/chrome/icons/zoom-out.svg -------------------------------------------------------------------------------- /chrome/toolbar/findbar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsyfriedchicken/EdgyArc-fr/HEAD/chrome/toolbar/findbar.css -------------------------------------------------------------------------------- /chrome/toolbar/navbar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsyfriedchicken/EdgyArc-fr/HEAD/chrome/toolbar/navbar.css -------------------------------------------------------------------------------- /chrome/toolbar/personalbar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsyfriedchicken/EdgyArc-fr/HEAD/chrome/toolbar/personalbar.css -------------------------------------------------------------------------------- /chrome/toolbar/tabbar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsyfriedchicken/EdgyArc-fr/HEAD/chrome/toolbar/tabbar.css -------------------------------------------------------------------------------- /chrome/toolbar/urlbar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsyfriedchicken/EdgyArc-fr/HEAD/chrome/toolbar/urlbar.css -------------------------------------------------------------------------------- /chrome/tweaks/hide-tabs-bar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsyfriedchicken/EdgyArc-fr/HEAD/chrome/tweaks/hide-tabs-bar.css -------------------------------------------------------------------------------- /chrome/tweaks/sidebery.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsyfriedchicken/EdgyArc-fr/HEAD/chrome/tweaks/sidebery.css -------------------------------------------------------------------------------- /chrome/userChrome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsyfriedchicken/EdgyArc-fr/HEAD/chrome/userChrome.css -------------------------------------------------------------------------------- /chrome/userContent.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artsyfriedchicken/EdgyArc-fr/HEAD/chrome/userContent.css --------------------------------------------------------------------------------