-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ec6ccb5
commit 849bba6
Showing
13 changed files
with
72 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
hdpapifilccjnaehhjncdaggaoiididc |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# Copyright (c) 2022 Alex313031 | ||
|
||
## Thorium Overlay Scrollbars Theme | ||
|
||
DESCRIPTION: A simple scrollbar Cascading Style Sheets theme for the Thorium Browser. | ||
|
||
LOGO: Originally from an .svg file > https://assets.ubuntu.com/v1/3b5dc41b-Kernel_white.svg from here > https://ubuntu.com/kernel | ||
- Modified by me in GIMP on Ubuntu 22.04 Codename "Jammy Jellyfish". | ||
|
||
Inspired by crunchbangplusplus' > https://crunchbangplusplus.org/ Chromium scrollbar theme > https://github.com/CBPP/cbpp-configs/tree/master/cbpp-configs/data/etc/skel/.config/chromium/Default/Extensions/fkjongoeciifbagjhbjaemcajgimefed |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
/* Copyright (c) 2022 Alex313031. */ | ||
|
||
/* Track */ | ||
::-webkit-scrollbar-track-piece{ | ||
background-color:auto; | ||
-webkit-border-radius:1px; | ||
} | ||
|
||
/* width & height */ | ||
::-webkit-scrollbar{ | ||
width:12px; | ||
height:12px; | ||
} | ||
|
||
/* Handle */ | ||
::-webkit-scrollbar-thumb{ | ||
height:auto; | ||
background-color:#2C2C2C; | ||
-webkit-border-radius:6px; | ||
border: 1px solid #FFFFFF; | ||
} | ||
|
||
/* Handle on hover */ | ||
::-webkit-scrollbar-thumb:hover{ | ||
height:auto; | ||
background-color:#666666; | ||
-webkit-border-radius:6px; | ||
border: 1px solid #FFFFFF; | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
// Copyright (c) 2022 Alex313031. // | ||
// Test scrollbar injector javascript. // |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
// Copyright (c) 2022 Alex313031. // | ||
|
||
{ | ||
"name": "Thorium Scrollbars", | ||
"short_name": "Thorium Scrollbars", | ||
"description": "Thorium Overlay Scrollbars Theme", | ||
"version": "1.0.2", | ||
"offline_enabled": true, | ||
"minimum_chrome_version": "88", | ||
"manifest_version": 3, | ||
"content_scripts": [ { | ||
"all_frames": true, | ||
"js": [ "js/sb.js" ], | ||
"css": [ "css/thorium-scrollbars.css" ], | ||
"matches": [ "<all_urls>" ] | ||
} ], | ||
"icons": { | ||
"16": "icon_16.png", | ||
"24": "icon_24.png", | ||
"32": "icon_32.png", | ||
"48": "icon_48.png", | ||
"64": "icon_64.png", | ||
"128": "icon_128.png", | ||
"256": "icon_256.png" | ||
}, | ||
"permissions": [ "scripting" ], | ||
"host_permissions": [ "<all_urls>","*://*/*" ], | ||
"update_url": "https://clients2.google.com/service/update2/crx", | ||
"key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwIeMjN8X2ZoAKMD4PiQL41oyxjV763wLTa2Gbcqnz/dVmxUafKyh/pIIuD1cMxNm9NbLbAxIzgXnuFv0g0iuerp+xd9BcnRhOtJauEyaqAaUm5wMq83Dy+PM1n3VZ5o//2xW/n372PqXW/hdbbuRBwLmweJDeOzFi/LeLChdzfwAtSo1aWQ4ucWbKP7MTbqwiF0E9NWnlI6PSCO4vIs4lmuUdz5D0nEl7Fx8pT4EcSbXDBIePbAyRf9S2Wq2WyR7pe8ZSmkfG0bl3m/dxnvhsmLokdsbNxLFfYo8cUCBIx/P08/jP30WE4c3IJj1povJtyd91zRpzmOMM4qZEwDSbwIDAQAB" | ||
} |