Fira Code for StackOverflow
Use the beautiful Fira Code font (https://github.com/tonsky/FiraCode) and its ligatures for code chunks on StackOverflow!
Was ist Fira Code for StackOverflow?
Fira Code for StackOverflow ist eine Chrome-Erweiterung, die von Martin Schmelzer entwickelt wurde, und ihr Hauptmerkmal ist "Use the beautiful Fira Code font (https://github.com/tonsky/FiraCode) and its ligatures for code chunks on StackOverflow!".
Erweiterungsscreenshots
Fira Code for StackOverflow-Erweiterungs-CRX-Datei herunterladen
Laden Sie Fira Code for StackOverflow-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
Choose between two font weights in the extensions options. The font is integrated in the add-on - no need to install the font on your computer! For more information on Fira Code visit https://github.com/tonsky/FiraCode.
Grundlegende Informationen zur Erweiterung
Name | Fira Code for StackOverflow |
ID | ecldaajhgjoideepdlajkipnkblnkjhn |
Offizielle URL | https://chromewebstore.google.com/detail/fira-code-for-stackoverfl/ecldaajhgjoideepdlajkipnkblnkjhn |
Beschreibung | Use the beautiful Fira Code font (https://github.com/tonsky/FiraCode) and its ligatures for code chunks on StackOverflow! |
Dateigröße | 341 KB |
Installationsanzahl | 83 |
Aktuelle Version | 1.1 |
Letztes Update | 2021-12-04 |
Veröffentlichungsdatum | 2019-11-10 |
Bewertung | 5.00/5 Insgesamt 1 Bewertungen |
Entwickler | Martin Schmelzer |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Fira Code for StackOverflow", "version": "1.1", "author": "Martin Schmelzer", "description": "Use the beautiful Fira Code font (https:\/\/github.com\/tonsky\/FiraCode) and its ligatures for code chunks on StackOverflow!", "icons": { "48": "icons\/icon48.png", "96": "icons\/icon96.png", "128": "icons\/icon128.png" }, "content_scripts": [ { "matches": [ "*:\/\/*.stackoverflow.com\/*" ], "js": [ "js\/fira.js" ], "css": [ "css\/styles.css" ] } ], "options_page": "html\/options.html", "permissions": [ "storage" ] } |