Quellcode durchsuchen

Fixed a few minor UI glitches on mobile Firefox

master
saturn vor 6 Jahren
Ursprung
Commit
4e202e8c9a
3 geänderte Dateien mit 5 neuen und 4 gelöschten Zeilen
  1. 2
    2
      src/platform/firefox/manifest.json
  2. 2
    1
      src/popup.html
  3. 1
    1
      src/popup.js

+ 2
- 2
src/platform/firefox/manifest.json Datei anzeigen

], ],
"browser_action": { "browser_action": {
"default_popup": "popup.html", "default_popup": "popup.html",
"default_title": "AlwaysKillSticky - Click the icon to control sticky-killing on this site!",
"default_title": "AlwaysKillSticky",
"default_icon": { "default_icon": {
"19": "images/AKS_on_19.png", "19": "images/AKS_on_19.png",
"38": "images/AKS_on_38.png" "38": "images/AKS_on_38.png"
"page": "options.html", "page": "options.html",
"open_in_tab": true "open_in_tab": true
} }
}
}

+ 2
- 1
src/popup.html Datei anzeigen

<html> <html>
<head> <head>
<title>AlwaysKillSticky</title> <title>AlwaysKillSticky</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta http-equiv='Content-Type' content='text/html; charset=utf-8' /> <meta http-equiv='Content-Type' content='text/html; charset=utf-8' />
<link rel='stylesheet' type='text/css' href='popup.css' /> <link rel='stylesheet' type='text/css' href='popup.css' />
<link rel='stylesheet' type='text/css' href='fonts.css' /> <link rel='stylesheet' type='text/css' href='fonts.css' />
</body> </body>
<script src="functions.js"></script> <script src="functions.js"></script>
<script src="popup.js"></script> <script src="popup.js"></script>
</html>
</html>

+ 1
- 1
src/popup.js Datei anzeigen

}); });
} }


initialize();
initialize();

Laden…
Abbrechen
Speichern