Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

I have made visual improvements. #23

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 34 additions & 0 deletions _locales/tr/messages.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
{
"extensionDescription": {
"message": "YouTube'da hangi video codec'inin çalınmasını tercih edeceğinizi seçin",
"description": "Uzantı açıklaması"
},

"optionsTitle": {
"message": "geliştirilmiş-h264ify"
},

"optionsBlock60fps": {
"message": "60fps videoyu engelle"
},

"optionsBlockH264": {
"message": "h264'ü engelle"
},

"optionsBlockVP8": {
"message": "VP8'i engelle"
},

"optionsBlockVP9": {
"message": "VP9'u engelle"
},

"optionsBlockAV1": {
"message": "AV1'i engelle"
},

"optionsDisableLN": {
"message": "Ses Yükseklik Normalizasyonunu Devre Dışı Bırak"
}
}
29 changes: 29 additions & 0 deletions options.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,35 @@
body {
white-space:nowrap;
}
li {
display: flex;
align-items: center;
font-size: 14px;
margin-bottom: 10px;
}
input[type="checkbox"] {
display: none;
}
label {
position: relative;
cursor: pointer;
padding-left: 30px;
}
label::before {
content: "";
position: absolute;
left: 0;
top: 0;
width: 20px;
height: 20px;
border-radius: 10px;
border: 1px solid lightgray;
background-color: white;
}
input[type="checkbox"]:checked + label::before {
border: 1px solid lightgreen;
background-color: lightgreen;
}
</style>
</head>
<body>
Expand Down