Skip to content

Commit

Permalink
A: local fonts to Edge ext.
Browse files Browse the repository at this point in the history
<!-- Replace the bracketed [...] placeholders with your own information.
-->

> Any additions, changes or removals is at the Authors discretion.  
> You're free to counterargue (to a certain point) if you disagree with
the decision.
> To avoid being banned, don't constantly re-open or create new
(related) issue reports or pull requests.
### Prerequisites
<!-- Check the appropriate boxes before you submit your issue -->
- [x] I've read the [Code of
Conduct](https://github.com/JohnyP36/YT-Nonstop/blob/main/.github/CODE_OF_CONDUCT.md)
and the [Contributing
Guidelines](https://github.com/JohnyP36/YT-Nonstop/blob/main/.github/CONTRIBUTING.md)
- [x] This is more than one or two issue(s)
- Otherwise open a [new
issue](https://github.com/JohnyP36/YT-Nonstop/issues/new/choose)
- [x] I performed a cursory search of the issue tracker to avoid opening
a duplicate issue
    - Your issue may already be reported.
- [x] I tried to reproduce the issue when...
- [ ] Other webextensions related to Youtube are disabled <!-- Just to
ensure there is no issues or conflicts with other webbrowser extensions.
-->
    - [x] using a new, unmodified browser profile
- [x] I am running the latest version of the extension

### Describe the issue
<!-- [Be as clear as possible: nobody can read mind, and nobody is
looking at your issue over your shoulder.] -->
<!-- Just a description of the issue when you visit the site. Or steps on reproducing this -->
You are using specific fonts. People who don't have those will see an ugly lay-out with wrong border sizes.

#### Screenshot(s)
<!-- [Screenshot(s) for difficult to describe visual issues are
**mandatory**. Post links instead of **Inline Images** for Screenshots
containing **Adult material**.] -->
<details>
<summary>Screenshot(s)</summary>
    
</details>

### Browser & Extension version
<!-- delete the "e.g." and put between the "**...**" or "_**...**_ your
own information. Change the number of your browser version if it's not
92 -->
| Browser name & version | Extension Version | Operating System |
| :---                   |       :---:       |             ---: |
| \`**MS Edge** 114\`   | \` _**2.0.6**_\`| \`**Windows 10**, 22H2\` | 

#### Notes
<!-- [Add here the result of whatever investigation work you have done:
please investigate the issues you report -- this prevents burdening
other volunteers. This is especially true for issues arising from
settings which are very different from default ones.] -->
<!-- If you have a screenshot of the issue or advert, this will help to
highlight it. -->
  • Loading branch information
JohnyP36 authored Jun 9, 2023
2 parents de3e1f1 + b002f45 commit 0738051
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 4 deletions.
3 changes: 2 additions & 1 deletion manifest_v3/aboutPage.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
<html>
<head>
<meta content="text/html;charset=utf-8" http-equiv="Content-Type">
<link href="fonts/fonts.css" rel='stylesheet' type='text/css'>
<style>
hr {
border: 0px solid white;
Expand Down Expand Up @@ -100,4 +101,4 @@ <h1>Youtube Autoconfirm<br>& Youtube Autoplay</h1>
<a href="popup1.3.2.html" id="goBackLink">Back</a>
</body>
<script src="js/popup(about).js"></script>
</html>
</html>
Binary file added manifest_v3/fonts/Copperplate.woff2
Binary file not shown.
Binary file added manifest_v3/fonts/Estrangelo.woff2
Binary file not shown.
Binary file added manifest_v3/fonts/Lucida.woff2
Binary file not shown.
12 changes: 12 additions & 0 deletions manifest_v3/fonts/fonts.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
@font-face {
font-family: 'Lucida Sans Typewriter';
src: url("../fonts/Lucida.woff2") format('woff2');
}
@font-face {
font-family: 'Copperplate Gothic Light';
src: url("../fonts/Copperplate.woff2") format('woff2');
}
@font-face {
font-family: 'Estrangelo Edessa';
src: url("../fonts/Estrangelo.woff2") format('woff2');
}
7 changes: 4 additions & 3 deletions manifest_v3/popup1.3.2.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
<html>
<head>
<meta content="text/html;charset=utf-8" http-equiv="Content-Type">
<link href="fonts/fonts.css" rel='stylesheet' type='text/css'>
<style>
hr {
border: 0px solid white;
Expand Down Expand Up @@ -49,7 +50,7 @@
font-size: 10.5px;
color: black;
background-color: #EBF1FF;
padding: 1.1px 3.1px;
padding: 1.1px 1.9px;
font-family: "Copperplate Gothic Light";
border-left: 1.7px solid #EBF1FF;
border-right: 1.7px solid #EBF1FF;
Expand All @@ -68,7 +69,7 @@
font-size: 10.5px;
color: black;
background-color: #EBF1FF;
padding: 1.1px 2.5px;
padding: 1.1px 1.0px;
font-family: "Copperplate Gothic Light";
border-left: 17.5px solid #EBF1FF;
border-right: 17.5px solid #EBF1FF;
Expand Down Expand Up @@ -291,4 +292,4 @@ <h1>Youtube Autoconfirm<br> is active.</h1>
<a href="aboutPage.html" id="aboutLink">About</a>
</body>
<script src="js/popup(autoplay+loop).js"></script>
</html>
</html>

0 comments on commit 0738051

Please sign in to comment.