Code Blue

Syntax highlighting for code blocks on X/Twitter

Code Blue là gì?

Code Blue là một tiện ích mở rộng Chrome được phát triển bởi Pact Interactive, và tính năng chính của nó là "Syntax highlighting for code blocks on X/Twitter".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Code Blue

Tải xuống các tệp mở rộng Code Blue dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

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

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Code Blue Code Blue
ID mbjgnjfkngoogkgohnmbimnpdacdbghb
URL Chính Thức https://chromewebstore.google.com/detail/code-blue/mbjgnjfkngoogkgohnmbimnpdacdbghb
Mô tả Syntax highlighting for code blocks on X/Twitter
Kích Thước Tệp 121 KB
Số Lần Cài Đặt 123
Phiên Bản Hiện Tại 0.2.1
Cập Nhật Lần Cuối 2023-09-27
Ngày Phát Hành 2023-07-18
Nhà Phát Triển Pact Interactive
Email [email protected]
Loại Thanh Toán free
URL Trang Trợ Giúp https://github.com/vdsabev/code-blue
URL Trang Chính Sách Bảo Mật https://pactinteractive.github.io
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}