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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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
}