Code Blue
Syntax highlighting for code blocks on X/Twitter
Cos'è Code Blue?
Code Blue è un'estensione di Chrome sviluppata da Pact Interactive, e la sua funzione principale è "Syntax highlighting for code blocks on X/Twitter".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Code Blue
Scarica i file di estensione Code Blue in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
🐦⬛ Code Blue
━━━━━━━━━━
Renders blocks of inline code on X/Twitter like:
```js
function sayHello(name) {
console.log(`Hello, ${name}!`);
}
sayHello('World');
```
```rust
fn main() {
println!("Hello, World!");
}
```
```latex
c = \pm\sqrt{a^2 + b^2}
```
📝 Change Log
━━━━━━━
0.2.1:
- Add support for the x.com domain
0.2.0:
- Render LaTeX with https://github.com/KaTeX/KaTeX
0.1.0:
- Render code blocks with https://github.com/PrismJS/prism Informazioni di Base sull'Estensione
| Nome | |
| ID | mbjgnjfkngoogkgohnmbimnpdacdbghb |
| URL Ufficiale | https://chromewebstore.google.com/detail/code-blue/mbjgnjfkngoogkgohnmbimnpdacdbghb |
| Descrizione | Syntax highlighting for code blocks on X/Twitter |
| Dimensione del File | 121 KB |
| Conteggio Installazioni | 123 |
| Versione Corrente | 0.2.1 |
| Ultimo Aggiornamento | 2023-09-27 |
| Data di Pubblicazione | 2023-07-18 |
| Sviluppatore | Pact Interactive |
| [email protected] | |
| Tipo di Pagamento | free |
| URL della Pagina di Aiuto | https://github.com/vdsabev/code-blue |
| URL della Pagina della Politica sulla Privacy | https://pactinteractive.github.io |
| Lingue Supportate | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Code Blue",
"description": "Syntax highlighting for code blocks on X\/Twitter",
"version": "0.2.1",
"manifest_version": 3,
"icons": {
"16": "\/images\/icon_16.png",
"48": "\/images\/icon_48.png",
"128": "\/images\/icon_128.png"
},
"content_scripts": [
{
"matches": [
"https:\/\/*.x.com\/*",
"https:\/\/*.twitter.com\/*"
],
"css": [
"lib\/katex.css",
"lib\/prism.css"
],
"js": [
"lib\/katex.js",
"lib\/prism.js",
"src\/highlightCodeBlocks.js"
]
}
]
} | |