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
电子邮箱 [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
}