-
+ Logo by @munadikieh
@@ -60,7 +60,11 @@ Run `npm run dev` to run the extension using a clean browser profile with hot re
## Packing
-Run `npm run build` to generate a packed extension.
+Run `npm run build` to generate a packed Chrome extension.
+
+Use `npm run build:firefox` to generate a Firefox extension.
+
+The result is in `dist`.
# Credit
diff --git a/public/_locales/en/messages.json b/public/_locales/en/messages.json
index 51017402..0900962e 100644
--- a/public/_locales/en/messages.json
+++ b/public/_locales/en/messages.json
@@ -386,5 +386,14 @@
},
"invidiousInfo2": {
"message": "You MUST enable it in the options for it to work."
+ },
+ "minDuration": {
+ "message": "Minimum duration (seconds):"
+ },
+ "minDurationDescription": {
+ "message": "Sponsor segments shorter than the set value will not be skipeed or show in the player."
+ },
+ "shortCheck": {
+ "message": "The following submission is shorter than your minimum duration option. This could mean that this is already submitted, and just being ignored due to this option. Are you sure you would like to submit?"
}
}
diff --git a/public/options/options.css b/public/options/options.css
index 7cfa094e..bc8e2f92 100644
--- a/public/options/options.css
+++ b/public/options/options.css
@@ -309,4 +309,13 @@ h1,h2,h3,h4,h5,h6 {
svg {
text-decoration: none;
+}
+
+.number-container:before {
+ content: attr(label-name);
+ padding-right: 4px;
+ width: max-content;
+
+ font-size: 14px;
+ color: white;
}
\ No newline at end of file
diff --git a/public/options/options.html b/public/options/options.html
index 0e7c155f..37aac281 100644
--- a/public/options/options.html
+++ b/public/options/options.html
@@ -76,7 +76,7 @@