Skip to content

Commit

Permalink
Bug causing extension not to load b/c of tests fixed with webpack and…
Browse files Browse the repository at this point in the history
… init. load percent fixed
  • Loading branch information
ChristianE00 committed May 10, 2024
1 parent dcfc90d commit 6b5d0d0
Show file tree
Hide file tree
Showing 8 changed files with 877 additions and 8 deletions.
Binary file renamed .worker.test.js.swp → .worker.js.swp
Binary file not shown.
36 changes: 34 additions & 2 deletions css/output.css
Original file line number Diff line number Diff line change
Expand Up @@ -639,6 +639,10 @@ video {
position: static;
}

.\!fixed {
position: fixed !important;
}

.fixed {
position: fixed;
}
Expand All @@ -647,6 +651,10 @@ video {
position: absolute;
}

.\!relative {
position: relative !important;
}

.relative {
position: relative;
}
Expand Down Expand Up @@ -715,12 +723,16 @@ video {
clear: none;
}

.m-1 {
margin: 0.25rem;
}

.m-2 {
margin: 0.5rem;
}

.m-3 {
margin: 0.75rem;
.m-48 {
margin: 12rem;
}

.mx-1 {
Expand Down Expand Up @@ -776,6 +788,10 @@ video {
-webkit-line-clamp: none;
}

.\!block {
display: block !important;
}

.block {
display: block;
}
Expand All @@ -796,6 +812,10 @@ video {
display: inline-flex;
}

.\!table {
display: table !important;
}

.table {
display: table;
}
Expand Down Expand Up @@ -848,6 +868,10 @@ video {
display: inline-grid;
}

.\!contents {
display: contents !important;
}

.contents {
display: contents;
}
Expand All @@ -860,6 +884,10 @@ video {
display: none;
}

.h-1 {
height: 0.25rem;
}

.h-2 {
height: 0.5rem;
}
Expand Down Expand Up @@ -2016,6 +2044,10 @@ video {
object-fit: scale-down;
}

.p-1 {
padding: 0.25rem;
}

.px-2 {
padding-left: 0.5rem;
padding-right: 0.5rem;
Expand Down
1 change: 1 addition & 0 deletions dist/main.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@
"default_icon": "icon.png"
},
"background": {
"service_worker": "worker.js"
"service_worker": "./dist/main.js"
}
}
Loading

0 comments on commit 6b5d0d0

Please sign in to comment.