This commit is contained in:
Alexlegarnd
2017-01-04 19:10:24 +01:00
commit 43a6e6ec6d
3 changed files with 38 additions and 0 deletions

23
src/ent.css Normal file
View File

@@ -0,0 +1,23 @@
* {
background-color: #2b2b2b !important;
background: #2b2b2b !important;
color: white;
margin: #2b2b2b !important;
border: #2b2b2b !important;
text-shadow: 0 0 0 white !important;
}
a {
color: #f45f42 !important;
text-shadow: 0 0 0 white !important;
}
body{
color: white !important;
}
.block{
border: #4f4f4f !important;
}
.breadcrumb {
background: #2b2b2b !important;
text-shadow: 0px 0px white !important;
}

BIN
src/icon.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

15
src/manifest.json Normal file
View File

@@ -0,0 +1,15 @@
{
"name" :"ENT IUT Amiens Dark Mode",
"version" :"1.0",
"manifest_version": 2,
"description" :"Bah il met l'ENT plus sombre connard",
"browser_action" :
{
"default_icon" : "icon.png"
},
"content_scripts": [ {
"css": [ "ent.css" ],
"matches": [ "https://ent.iut-amiens.fr/*" ]
} ]
}