Code Blue
Syntax highlighting for code blocks on X/Twitter
Code Blue란 무엇입니까?
Code Blue은(는) Pact Interactive에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Syntax highlighting for code blocks on X/Twitter"입니다.
확장 프로그램 스크린샷
Code Blue 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
🐦⬛ 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
확장 프로그램 기본 정보
이름 | |
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" ] } ] } |