BB Code Formatter

A chrome plugin to format BlackBoard answer and question code

ما هو BB Code Formatter؟

BB Code Formatter هو إضافة Chrome تم تطويرها بواسطة https://www.codemic.co.za، والميزة الرئيسية لها هي "A chrome plugin to format BlackBoard answer and question code".

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

screenshot
screenshot
screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة BB Code Formatter

قم بتنزيل ملفات الامتداد BB Code Formatter بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        A Plugin that formats and styles code on BlackBoard Learn to make it easier for a marker to mark submitted code. This plugin works in many different ways.                    

معلومات أساسية عن التمديد

الاسم BB Code Formatter BB Code Formatter
ID dkahjdiadpbagppobflhmiloonjmodmn
عنوان URL الرسمي https://chromewebstore.google.com/detail/bb-code-formatter/dkahjdiadpbagppobflhmiloonjmodmn
الوصف A chrome plugin to format BlackBoard answer and question code
حجم الملف 1.11 MB
عدد التثبيتات 22
النسخة الحالية 1.5
آخر تحديث 2020-12-18
تاريخ النشر 2020-12-13
المطور https://www.codemic.co.za
البريد الإلكتروني [email protected]
نوع الدفع free
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "BB Code Formatter",
    "description": "A chrome plugin to format BlackBoard answer and question code",
    "version": "1.5",
    "browser_action": {
        "default_title": "Format your code",
        "default_icon": {
            "19": "icons\/logo.png"
        },
        "default_popup": "BBcode-formatter.html"
    },
    "permissions": [
        "activeTab",
        "storage"
    ],
    "background": {
        "scripts": [
            "popup.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "resources\/jquery.min.js",
                "popup.js",
                "resources\/js-beautify-master\/web\/third-party\/codemirror\/lib\/codemirror.js",
                "resources\/js-beautify-master\/web\/third-party\/codemirror\/mode\/javascript\/javascript.js",
                "resources\/js-beautify-master\/web\/third-party\/codemirror\/plugins\/placeholder.js",
                "resources\/js-beautify-master\/js\/lib\/beautify.js",
                "resources\/js-beautify-master\/js\/lib\/beautify-css.js",
                "resources\/js-beautify-master\/js\/lib\/beautify-html.js"
            ],
            "css": [
                "resources\/js-beautify-master\/web\/third-party\/codemirror\/theme\/3024-day.css",
                "resources\/js-beautify-master\/web\/third-party\/codemirror\/theme\/3024-night.css",
                "resources\/js-beautify-master\/web\/third-party\/codemirror\/theme\/ambiance-mobile.css",
                "resources\/js-beautify-master\/web\/third-party\/codemirror\/theme\/ambiance.css",
                "resources\/js-beautify-master\/web\/third-party\/codemirror\/theme\/base16-dark.css",
                "resources\/js-beautify-master\/web\/third-party\/codemirror\/theme\/base16-light.css",
                "resources\/js-beautify-master\/web\/third-party\/codemirror\/theme\/blackboard.css",
                "resources\/js-beautify-master\/web\/third-party\/codemirror\/theme\/cobalt.css",
                "resources\/js-beautify-master\/web\/third-party\/codemirror\/theme\/eclipse.css",
                "resources\/js-beautify-master\/web\/third-party\/codemirror\/theme\/elegant.css",
                "resources\/js-beautify-master\/web\/third-party\/codemirror\/theme\/erlang-dark.css",
                "resources\/js-beautify-master\/web\/third-party\/codemirror\/theme\/lesser-dark.css",
                "resources\/js-beautify-master\/web\/third-party\/codemirror\/theme\/mbo.css",
                "resources\/js-beautify-master\/web\/third-party\/codemirror\/theme\/midnight.css",
                "resources\/js-beautify-master\/web\/third-party\/codemirror\/theme\/monokai.css",
                "resources\/js-beautify-master\/web\/third-party\/codemirror\/theme\/neat.css",
                "resources\/js-beautify-master\/web\/third-party\/codemirror\/theme\/night.css",
                "resources\/js-beautify-master\/web\/third-party\/codemirror\/theme\/paraiso-dark.css",
                "resources\/js-beautify-master\/web\/third-party\/codemirror\/theme\/paraiso-light.css",
                "resources\/js-beautify-master\/web\/third-party\/codemirror\/theme\/rubyblue.css",
                "resources\/js-beautify-master\/web\/third-party\/codemirror\/theme\/solarized.css",
                "resources\/js-beautify-master\/web\/third-party\/codemirror\/theme\/the-matrix.css",
                "resources\/js-beautify-master\/web\/third-party\/codemirror\/theme\/tomorrow-night-eighties.css",
                "resources\/js-beautify-master\/web\/third-party\/codemirror\/theme\/twilight.css",
                "resources\/js-beautify-master\/web\/third-party\/codemirror\/theme\/vibrant-ink.css",
                "resources\/js-beautify-master\/web\/third-party\/codemirror\/theme\/xq-dark.css",
                "resources\/js-beautify-master\/web\/third-party\/codemirror\/theme\/xq-light.css",
                "resources\/js-beautify-master\/web\/third-party\/codemirror\/lib\/codemirror.css"
            ],
            "all_frames": true
        }
    ],
    "manifest_version": 2
}