Code Block Beautifier

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

 elements.

O que é Code Block Beautifier?

Code Block Beautifier é uma extensão do Chrome desenvolvida por Haixiang Yan, e sua principal característica é "A chrome extension for beautifying code blocks in any websites that contain

 elements.".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Code Block Beautifier

Baixe arquivos de extensão Code Block Beautifier no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

 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.                    

Informações Básicas da Extensão

Nome Code Block Beautifier Code Block Beautifier
ID gpcjjddhdnilcbddlonlfgdbejfboonn
URL Oficial https://chromewebstore.google.com/detail/code-block-beautifier/gpcjjddhdnilcbddlonlfgdbejfboonn
Descrição A chrome extension for beautifying code blocks in any websites that contain
 elements.
Tamanho do Arquivo 305 KB
Contagem de Instalações 2,065
Versão Atual 1.0.6
Última Atualização 2019-04-01
Data de Publicação 2019-03-31
Classificação 4.95/5 Total de 19 Avaliações
Desenvolvedor Haixiang Yan
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/Haixiang6123/codeblock-beautifier
URL da Página de Ajuda https://github.com/Haixiang6123/codeblock-beautifier/issues
Idiomas Suportados 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
}