BB Code Formatter

A chrome plugin to format BlackBoard answer and question code

BB Code Formatter là gì?

BB Code Formatter là một tiện ích mở rộng Chrome được phát triển bởi https://www.codemic.co.za, và tính năng chính của nó là "A chrome plugin to format BlackBoard answer and question code".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng BB Code Formatter

Tải xuống các tệp mở rộng BB Code Formatter dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên BB Code Formatter BB Code Formatter
ID dkahjdiadpbagppobflhmiloonjmodmn
URL Chính Thức https://chromewebstore.google.com/detail/bb-code-formatter/dkahjdiadpbagppobflhmiloonjmodmn
Mô tả A chrome plugin to format BlackBoard answer and question code
Kích Thước Tệp 1.11 MB
Số Lần Cài Đặt 22
Phiên Bản Hiện Tại 1.5
Cập Nhật Lần Cuối 2020-12-18
Ngày Phát Hành 2020-12-13
Nhà Phát Triển https://www.codemic.co.za
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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
}