This commit is contained in:
Zan
2025-12-08 13:13:42 +01:00
parent 431103d2ff
commit 3d399ee8be
4 changed files with 7 additions and 4 deletions

View File

@@ -1,7 +1,7 @@
{
"manifest_version": 3,
"name": "Firxa",
"version": "1.4.2",
"version": "1.4.4",
"description": "KRÉTA webes verziójának újraírása",
"icons": {
"128": "images/firka_logo_128.png"

View File

@@ -1,7 +1,7 @@
{
"manifest_version": 3,
"name": "Firxa",
"version": "1.4.2",
"version": "1.4.4",
"description": "KRÉTA webes verziójának újraírása",
"icons": {
"128": "images/firka_logo_128.png"

View File

@@ -57,10 +57,13 @@ body {
align-items:center;
gap:8px;
}
.logo {
.logos {
width:32px;
height:32px;
}
.logo {
display: none !important;
}
.search-title {
color:var(--text-primary);
text-align:center;

View File

@@ -47,7 +47,7 @@ async function applyFirkaStyling() {
const logoImg = document.createElement('img');
logoImg.src = chrome.runtime.getURL('images/firka_logo.png');
logoImg.alt = 'Firka';
logoImg.className = 'logo';
logoImg.className = 'logos';
logoText.appendChild(logoImg);
logoText.appendChild(document.createTextNode('Firka'));