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ファイルをダウンロード

Code Block Beautifier拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

 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
Eメール [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
}