Code Block Beautifier

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

 elements.

Co je Code Block Beautifier?

Code Block Beautifier je rozšíření Chrome vyvinuté Haixiang Yan, a jeho hlavní funkcí je „A chrome extension for beautifying code blocks in any websites that contain

 elements.“.

Snímky obrazovky rozšíření

screenshot
screenshot

Stáhnout soubor CRX rozšíření Code Block Beautifier

Stáhněte si soubory rozšíření Code Block Beautifier ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

 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.                    

Základní Informace o Rozšíření

Název Code Block Beautifier Code Block Beautifier
ID gpcjjddhdnilcbddlonlfgdbejfboonn
Oficiální URL https://chromewebstore.google.com/detail/code-block-beautifier/gpcjjddhdnilcbddlonlfgdbejfboonn
Popis A chrome extension for beautifying code blocks in any websites that contain
 elements.
Velikost souboru 305 KB
Počet instalací 2,065
Aktuální Verze 1.0.6
Poslední Aktualizace 2019-04-01
Datum Vydání 2019-03-31
Hodnocení 4.95/5 Celkem 19 Hodnocení
Vývojář Haixiang Yan
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/Haixiang6123/codeblock-beautifier
URL Stránky Nápovědy https://github.com/Haixiang6123/codeblock-beautifier/issues
Podporované Jazyky 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
}