Code Block Beautifier

A chrome extension for beautifying code blocks in any websites that contain

 elements.

Code Block Beautifier란 무엇입니까?

Code Block Beautifier은(는) Haixiang Yan에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A chrome extension for beautifying code blocks in any websites that contain

 elements."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Code Block Beautifier 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

 A chrome extension for highlighting codes of Medium Articles, but now, it can highlight codes in any websites that have 
 element. Check the screenshots to learn how to use. 👙 Beautify any code blocks wrapping in 
 automatically.

👗 Beautify code blocks according to your languages preference.

🔓 Auto detect what languages that the author defines

🎁 Supporting Medium, StackOverflow, 简书, 知乎, W3C Plus.

🎉 More than 80 themes are available. Can switch to any language highlight solutions.

🎊 More than 20 language highlight themes are available. Can switch to any highlight themes you like.                    

확장 프로그램 기본 정보

이름 Code Block Beautifier Code Block Beautifier
ID gpcjjddhdnilcbddlonlfgdbejfboonn
공식 URL https://chromewebstore.google.com/detail/code-block-beautifier/gpcjjddhdnilcbddlonlfgdbejfboonn
설명 A chrome extension for beautifying code blocks in any websites that contain
 elements.
파일 크기 305 KB
설치 횟수 2,065
현재 버전 1.0.6
최근 업데이트 2019-04-01
출시 날짜 2019-03-31
평점 4.95/5 총 19 개의 평점
개발자 Haixiang Yan
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/Haixiang6123/codeblock-beautifier
도움말 페이지 URL https://github.com/Haixiang6123/codeblock-beautifier/issues
지원되는 언어 en
manifest.json
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Code Block Beautifier", "version": "1.0.6", "description": "A chrome extension for beautifying code blocks in any websites that contain  elements.",
    "permissions": [
        "storage",
        "declarativeContent",
        "activeTab"
    ],
    "web_accessible_resources": [
        "lib\/highlight\/styles\/*.css"
    ],
    "background": {
        "scripts": [
            "background\/background.js"
        ],
        "persistent": false
    },
    "page_action": {
        "default_popup": "popup\/popup.html",
        "default_icon": {
            "16": "images\/icon-16.png",
            "32": "images\/icon-32.png",
            "48": "images\/icon-48.png",
            "128": "images\/icon-128.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [
                "content\/styles\/default.css"
            ],
            "js": [
                "lib\/highlight\/highlight.pack.js",
                "db\/langs.js",
                "common\/ThemeManager.js",
                "common\/EventHub.js",
                "content\/scripts\/Mixiner.js",
                "content\/scripts\/SelectionPanel.js",
                "content\/scripts\/CodeBlock.js",
                "content\/scripts\/Parser.js",
                "content\/scripts\/index.js"
            ]
        }
    ],
    "icons": {
        "16": "images\/icon-16.png",
        "32": "images\/icon-32.png",
        "48": "images\/icon-48.png",
        "128": "images\/icon-128.png"
    },
    "manifest_version": 2
}