Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex313031 authored May 5, 2022
1 parent ec6ccb5 commit 849bba6
Show file tree
Hide file tree
Showing 13 changed files with 72 additions and 0 deletions.
1 change: 1 addition & 0 deletions CRX_ID
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
hdpapifilccjnaehhjncdaggaoiididc
10 changes: 10 additions & 0 deletions src/README.txt
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
29 changes: 29 additions & 0 deletions src/css/thorium-scrollbars.css
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;
}
Binary file added src/icon_128.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/icon_16.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/icon_24.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/icon_256.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/icon_32.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/icon_48.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/icon_64.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/icon_orig.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 2 additions & 0 deletions src/js/sb.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
// Copyright (c) 2022 Alex313031. //
// Test scrollbar injector javascript. //
30 changes: 30 additions & 0 deletions src/manifest.json
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"
}

0 comments on commit 849bba6

Please sign in to comment.