Code Blue

Syntax highlighting for code blocks on X/Twitter

Code Blueคืออะไร?

Code Blue เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Pact Interactive และคุณลักษณะหลักของมันคือ "Syntax highlighting for code blocks on X/Twitter"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Code Blue

ดาวน์โหลดไฟล์ส่วนขยาย Code Blue ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        🐦‍⬛ 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                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Code Blue Code Blue
ID mbjgnjfkngoogkgohnmbimnpdacdbghb
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/code-blue/mbjgnjfkngoogkgohnmbimnpdacdbghb
คำอธิบาย Syntax highlighting for code blocks on X/Twitter
ขนาดไฟล์ 121 KB
จำนวนการติดตั้ง 123
เวอร์ชันปัจจุบัน 0.2.1
อัปเดตครั้งล่าสุด 2023-09-27
วันที่เผยแพร่ 2023-07-18
ผู้พัฒนา Pact Interactive
อีเมล [email protected]
ประเภทการชำระเงิน free
URL หน้าช่วยเหลือ https://github.com/vdsabev/code-blue
URL หน้านโยบายความเป็นส่วนตัว https://pactinteractive.github.io
ภาษาที่รองรับ 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"
            ]
        }
    ]
}