Fira Code for StackOverflow
Use the beautiful Fira Code font (https://github.com/tonsky/FiraCode) and its ligatures for code chunks on StackOverflow!
Vad är Fira Code for StackOverflow?
Fira Code for StackOverflow är en Chrome-tillägg utvecklad av Martin Schmelzer, och dess huvudfunktion är "Use the beautiful Fira Code font (https://github.com/tonsky/FiraCode) and its ligatures for code chunks on StackOverflow!".
Tilläggsskärmbilder
Ladda ner Fira Code for StackOverflow-förlängningens CRX-fil
Ladda ner Fira Code for StackOverflow-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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. Grundläggande Information om Tillägg
| Namn | |
| ID | ecldaajhgjoideepdlajkipnkblnkjhn |
| Officiell webbadress | https://chromewebstore.google.com/detail/fira-code-for-stackoverfl/ecldaajhgjoideepdlajkipnkblnkjhn |
| Beskrivning | Use the beautiful Fira Code font (https://github.com/tonsky/FiraCode) and its ligatures for code chunks on StackOverflow! |
| Filstorlek | 341 KB |
| Antal Installationer | 83 |
| Aktuell Version | 1.1 |
| Senast Uppdaterad | 2021-12-04 |
| Publiceringsdatum | 2019-11-10 |
| Betyg | 5.00/5 Totalt 1 Betyg |
| Utvecklare | Martin Schmelzer |
| E-post | [email protected] |
| Betalningssätt | free |
| Stödda Språk | 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"
]
} | |