├── .gitattributes ├── .github ├── FUNDING.yml ├── chrome.png ├── edge.png └── firefox.png ├── .gitignore ├── .jsbeautifyrc ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── assets ├── Promo Image - GitHub.svg ├── Promo Image - Large.svg ├── Promo Image - Small.svg ├── Promo Image - Wide.svg ├── icon.png └── icon.svg └── src ├── _locales ├── de │ └── messages.json ├── en │ └── messages.json ├── es │ └── messages.json ├── fi │ └── messages.json ├── fr │ └── messages.json ├── it │ └── messages.json ├── nl │ └── messages.json ├── pl │ └── messages.json ├── pt │ └── messages.json ├── ru │ └── messages.json ├── sl │ └── messages.json ├── uk │ └── messages.json └── zh │ └── messages.json ├── background.js ├── content.js ├── crossbrowser.js ├── defaults.js ├── generateCSS.js ├── icons ├── icon-128.png ├── icon-32.png ├── icon-48.png ├── icon-64.png └── icon-96.png ├── images ├── cancel.svg ├── check.svg ├── components │ ├── dark │ │ ├── down.svg │ │ ├── left.svg │ │ ├── right.svg │ │ └── up.svg │ └── light │ │ ├── down.svg │ │ ├── left.svg │ │ ├── right.svg │ │ └── up.svg ├── copy.svg ├── delete.svg ├── edit.svg ├── feedback.svg ├── folder.svg ├── gift.svg ├── globe.svg ├── maximize.svg ├── minimize.svg ├── new.svg ├── preferences.svg ├── redo.svg ├── save.svg ├── search.svg └── sort.svg ├── lib ├── i18n_helper.js ├── iro.min.js └── new_browser_style.css ├── manifest-chromium.json ├── manifest-firefox.json ├── options ├── backup.html ├── options.html ├── rules.html ├── scripts │ ├── Rule.js │ ├── backup.js │ ├── dialogs.js │ ├── general.js │ ├── options.js │ ├── rules.js │ └── scrollbars.js ├── scrollbars.html ├── style.css ├── thumb.svg └── track.svg ├── popup ├── popup.html ├── script.js └── style.css └── webservice ├── openOptions.js └── unsubscribeFromNotifications.js /.gitattributes: -------------------------------------------------------------------------------- 1 | *.sh text eol=lf -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyBranton/Custom-Scrollbar/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/chrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyBranton/Custom-Scrollbar/HEAD/.github/chrome.png -------------------------------------------------------------------------------- /.github/edge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyBranton/Custom-Scrollbar/HEAD/.github/edge.png -------------------------------------------------------------------------------- /.github/firefox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyBranton/Custom-Scrollbar/HEAD/.github/firefox.png -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyBranton/Custom-Scrollbar/HEAD/.gitignore -------------------------------------------------------------------------------- /.jsbeautifyrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyBranton/Custom-Scrollbar/HEAD/.jsbeautifyrc -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyBranton/Custom-Scrollbar/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyBranton/Custom-Scrollbar/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyBranton/Custom-Scrollbar/HEAD/README.md -------------------------------------------------------------------------------- /assets/Promo Image - GitHub.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyBranton/Custom-Scrollbar/HEAD/assets/Promo Image - GitHub.svg -------------------------------------------------------------------------------- /assets/Promo Image - Large.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyBranton/Custom-Scrollbar/HEAD/assets/Promo Image - Large.svg -------------------------------------------------------------------------------- /assets/Promo Image - Small.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyBranton/Custom-Scrollbar/HEAD/assets/Promo Image - Small.svg -------------------------------------------------------------------------------- /assets/Promo Image - Wide.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyBranton/Custom-Scrollbar/HEAD/assets/Promo Image - Wide.svg -------------------------------------------------------------------------------- /assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyBranton/Custom-Scrollbar/HEAD/assets/icon.png -------------------------------------------------------------------------------- /assets/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyBranton/Custom-Scrollbar/HEAD/assets/icon.svg -------------------------------------------------------------------------------- /src/_locales/de/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyBranton/Custom-Scrollbar/HEAD/src/_locales/de/messages.json -------------------------------------------------------------------------------- /src/_locales/en/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyBranton/Custom-Scrollbar/HEAD/src/_locales/en/messages.json -------------------------------------------------------------------------------- /src/_locales/es/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyBranton/Custom-Scrollbar/HEAD/src/_locales/es/messages.json -------------------------------------------------------------------------------- /src/_locales/fi/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyBranton/Custom-Scrollbar/HEAD/src/_locales/fi/messages.json -------------------------------------------------------------------------------- /src/_locales/fr/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyBranton/Custom-Scrollbar/HEAD/src/_locales/fr/messages.json -------------------------------------------------------------------------------- /src/_locales/it/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyBranton/Custom-Scrollbar/HEAD/src/_locales/it/messages.json -------------------------------------------------------------------------------- /src/_locales/nl/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyBranton/Custom-Scrollbar/HEAD/src/_locales/nl/messages.json -------------------------------------------------------------------------------- /src/_locales/pl/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyBranton/Custom-Scrollbar/HEAD/src/_locales/pl/messages.json -------------------------------------------------------------------------------- /src/_locales/pt/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyBranton/Custom-Scrollbar/HEAD/src/_locales/pt/messages.json -------------------------------------------------------------------------------- /src/_locales/ru/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyBranton/Custom-Scrollbar/HEAD/src/_locales/ru/messages.json -------------------------------------------------------------------------------- /src/_locales/sl/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyBranton/Custom-Scrollbar/HEAD/src/_locales/sl/messages.json -------------------------------------------------------------------------------- /src/_locales/uk/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyBranton/Custom-Scrollbar/HEAD/src/_locales/uk/messages.json -------------------------------------------------------------------------------- /src/_locales/zh/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyBranton/Custom-Scrollbar/HEAD/src/_locales/zh/messages.json -------------------------------------------------------------------------------- /src/background.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyBranton/Custom-Scrollbar/HEAD/src/background.js -------------------------------------------------------------------------------- /src/content.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyBranton/Custom-Scrollbar/HEAD/src/content.js -------------------------------------------------------------------------------- /src/crossbrowser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyBranton/Custom-Scrollbar/HEAD/src/crossbrowser.js -------------------------------------------------------------------------------- /src/defaults.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyBranton/Custom-Scrollbar/HEAD/src/defaults.js -------------------------------------------------------------------------------- /src/generateCSS.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyBranton/Custom-Scrollbar/HEAD/src/generateCSS.js -------------------------------------------------------------------------------- /src/icons/icon-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyBranton/Custom-Scrollbar/HEAD/src/icons/icon-128.png -------------------------------------------------------------------------------- /src/icons/icon-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyBranton/Custom-Scrollbar/HEAD/src/icons/icon-32.png -------------------------------------------------------------------------------- /src/icons/icon-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyBranton/Custom-Scrollbar/HEAD/src/icons/icon-48.png -------------------------------------------------------------------------------- /src/icons/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyBranton/Custom-Scrollbar/HEAD/src/icons/icon-64.png -------------------------------------------------------------------------------- /src/icons/icon-96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyBranton/Custom-Scrollbar/HEAD/src/icons/icon-96.png -------------------------------------------------------------------------------- /src/images/cancel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyBranton/Custom-Scrollbar/HEAD/src/images/cancel.svg -------------------------------------------------------------------------------- /src/images/check.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyBranton/Custom-Scrollbar/HEAD/src/images/check.svg -------------------------------------------------------------------------------- /src/images/components/dark/down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyBranton/Custom-Scrollbar/HEAD/src/images/components/dark/down.svg -------------------------------------------------------------------------------- /src/images/components/dark/left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyBranton/Custom-Scrollbar/HEAD/src/images/components/dark/left.svg -------------------------------------------------------------------------------- /src/images/components/dark/right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyBranton/Custom-Scrollbar/HEAD/src/images/components/dark/right.svg -------------------------------------------------------------------------------- /src/images/components/dark/up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyBranton/Custom-Scrollbar/HEAD/src/images/components/dark/up.svg -------------------------------------------------------------------------------- /src/images/components/light/down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyBranton/Custom-Scrollbar/HEAD/src/images/components/light/down.svg -------------------------------------------------------------------------------- /src/images/components/light/left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyBranton/Custom-Scrollbar/HEAD/src/images/components/light/left.svg -------------------------------------------------------------------------------- /src/images/components/light/right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyBranton/Custom-Scrollbar/HEAD/src/images/components/light/right.svg -------------------------------------------------------------------------------- /src/images/components/light/up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyBranton/Custom-Scrollbar/HEAD/src/images/components/light/up.svg -------------------------------------------------------------------------------- /src/images/copy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyBranton/Custom-Scrollbar/HEAD/src/images/copy.svg -------------------------------------------------------------------------------- /src/images/delete.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyBranton/Custom-Scrollbar/HEAD/src/images/delete.svg -------------------------------------------------------------------------------- /src/images/edit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyBranton/Custom-Scrollbar/HEAD/src/images/edit.svg -------------------------------------------------------------------------------- /src/images/feedback.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyBranton/Custom-Scrollbar/HEAD/src/images/feedback.svg -------------------------------------------------------------------------------- /src/images/folder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyBranton/Custom-Scrollbar/HEAD/src/images/folder.svg -------------------------------------------------------------------------------- /src/images/gift.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyBranton/Custom-Scrollbar/HEAD/src/images/gift.svg -------------------------------------------------------------------------------- /src/images/globe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyBranton/Custom-Scrollbar/HEAD/src/images/globe.svg -------------------------------------------------------------------------------- /src/images/maximize.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyBranton/Custom-Scrollbar/HEAD/src/images/maximize.svg -------------------------------------------------------------------------------- /src/images/minimize.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyBranton/Custom-Scrollbar/HEAD/src/images/minimize.svg -------------------------------------------------------------------------------- /src/images/new.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyBranton/Custom-Scrollbar/HEAD/src/images/new.svg -------------------------------------------------------------------------------- /src/images/preferences.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyBranton/Custom-Scrollbar/HEAD/src/images/preferences.svg -------------------------------------------------------------------------------- /src/images/redo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyBranton/Custom-Scrollbar/HEAD/src/images/redo.svg -------------------------------------------------------------------------------- /src/images/save.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyBranton/Custom-Scrollbar/HEAD/src/images/save.svg -------------------------------------------------------------------------------- /src/images/search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyBranton/Custom-Scrollbar/HEAD/src/images/search.svg -------------------------------------------------------------------------------- /src/images/sort.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyBranton/Custom-Scrollbar/HEAD/src/images/sort.svg -------------------------------------------------------------------------------- /src/lib/i18n_helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyBranton/Custom-Scrollbar/HEAD/src/lib/i18n_helper.js -------------------------------------------------------------------------------- /src/lib/iro.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyBranton/Custom-Scrollbar/HEAD/src/lib/iro.min.js -------------------------------------------------------------------------------- /src/lib/new_browser_style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyBranton/Custom-Scrollbar/HEAD/src/lib/new_browser_style.css -------------------------------------------------------------------------------- /src/manifest-chromium.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyBranton/Custom-Scrollbar/HEAD/src/manifest-chromium.json -------------------------------------------------------------------------------- /src/manifest-firefox.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyBranton/Custom-Scrollbar/HEAD/src/manifest-firefox.json -------------------------------------------------------------------------------- /src/options/backup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyBranton/Custom-Scrollbar/HEAD/src/options/backup.html -------------------------------------------------------------------------------- /src/options/options.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyBranton/Custom-Scrollbar/HEAD/src/options/options.html -------------------------------------------------------------------------------- /src/options/rules.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyBranton/Custom-Scrollbar/HEAD/src/options/rules.html -------------------------------------------------------------------------------- /src/options/scripts/Rule.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyBranton/Custom-Scrollbar/HEAD/src/options/scripts/Rule.js -------------------------------------------------------------------------------- /src/options/scripts/backup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyBranton/Custom-Scrollbar/HEAD/src/options/scripts/backup.js -------------------------------------------------------------------------------- /src/options/scripts/dialogs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyBranton/Custom-Scrollbar/HEAD/src/options/scripts/dialogs.js -------------------------------------------------------------------------------- /src/options/scripts/general.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyBranton/Custom-Scrollbar/HEAD/src/options/scripts/general.js -------------------------------------------------------------------------------- /src/options/scripts/options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyBranton/Custom-Scrollbar/HEAD/src/options/scripts/options.js -------------------------------------------------------------------------------- /src/options/scripts/rules.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyBranton/Custom-Scrollbar/HEAD/src/options/scripts/rules.js -------------------------------------------------------------------------------- /src/options/scripts/scrollbars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyBranton/Custom-Scrollbar/HEAD/src/options/scripts/scrollbars.js -------------------------------------------------------------------------------- /src/options/scrollbars.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyBranton/Custom-Scrollbar/HEAD/src/options/scrollbars.html -------------------------------------------------------------------------------- /src/options/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyBranton/Custom-Scrollbar/HEAD/src/options/style.css -------------------------------------------------------------------------------- /src/options/thumb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyBranton/Custom-Scrollbar/HEAD/src/options/thumb.svg -------------------------------------------------------------------------------- /src/options/track.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyBranton/Custom-Scrollbar/HEAD/src/options/track.svg -------------------------------------------------------------------------------- /src/popup/popup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyBranton/Custom-Scrollbar/HEAD/src/popup/popup.html -------------------------------------------------------------------------------- /src/popup/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyBranton/Custom-Scrollbar/HEAD/src/popup/script.js -------------------------------------------------------------------------------- /src/popup/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyBranton/Custom-Scrollbar/HEAD/src/popup/style.css -------------------------------------------------------------------------------- /src/webservice/openOptions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyBranton/Custom-Scrollbar/HEAD/src/webservice/openOptions.js -------------------------------------------------------------------------------- /src/webservice/unsubscribeFromNotifications.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WesleyBranton/Custom-Scrollbar/HEAD/src/webservice/unsubscribeFromNotifications.js --------------------------------------------------------------------------------