Code Block Beautifier

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

 elements.

ما هو Code Block Beautifier؟

Code Block Beautifier هو إضافة Chrome تم تطويرها بواسطة Haixiang Yan، والميزة الرئيسية لها هي "A chrome extension for beautifying code blocks in any websites that contain

 elements.".

لقطات شاشة التمديد

screenshot
screenshot

تحميل ملف CRX للإضافة Code Block Beautifier

قم بتنزيل ملفات الامتداد Code Block Beautifier بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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
عنوان صفحة المساعدة 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
}