Better Facepunch Lua Blocks

Improves the Lua code blocks on the Facepunch Garry's Mod Lua subforum with new features like editing, linting, and more!

Better Facepunch Lua Blocks là gì?

Better Facepunch Lua Blocks là một tiện ích mở rộng Chrome được phát triển bởi zerf, và tính năng chính của nó là "Improves the Lua code blocks on the Facepunch Garry's Mod Lua subforum with new features like editing, linting, and more!".

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

Tải xuống tệp CRX của tiện ích mở rộng Better Facepunch Lua Blocks

Tải xuống các tệp mở rộng Better Facepunch Lua Blocks 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

                                            

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

Tên Better Facepunch Lua Blocks Better Facepunch Lua Blocks
ID ehobflckbaehomegofklbejikboechon
URL Chính Thức https://chromewebstore.google.com/detail/better-facepunch-lua-bloc/ehobflckbaehomegofklbejikboechon
Mô tả Improves the Lua code blocks on the Facepunch Garry's Mod Lua subforum with new features like editing, linting, and more!
Kích Thước Tệp 401 KB
Số Lần Cài Đặt 65
Phiên Bản Hiện Tại 0.2.0
Cập Nhật Lần Cuối 2017-02-28
Ngày Phát Hành 2017-02-27
Đánh Giá 4.71/5 Tổng số 7 Đánh Giá
Nhà Phát Triển zerf
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/bmwalters/better-facepunch-lua-blocks
URL Trang Trợ Giúp https://github.com/bmwalters/better-facepunch-lua-blocks/issues
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Better Facepunch Lua Blocks",
    "short_name": "Better FP Lua",
    "version": "0.2.0",
    "description": "Improves the Lua code blocks on the Facepunch Garry's Mod Lua subforum with new features like editing, linting, and more!",
    "author": "Zerf",
    "icons": {
        "16": "icons\/16.png",
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/facepunch.com\/showthread.php*"
            ],
            "js": [
                "bower_components\/codemirror\/index.js",
                "bower_components\/codemirror-addon-lint\/index.js",
                "bower_components\/codemirror-mode-lua\/index.js",
                "worker_proxy_content.js",
                "script.js"
            ],
            "css": [
                "bower_components\/codemirror-css\/index.css",
                "bower_components\/codemirror-addon-lint-css\/index.css",
                "bower_components\/codemirror-theme-monokai\/index.css",
                "style.css"
            ]
        }
    ],
    "permissions": [
        "https:\/\/facepunch.com\/showthread.php*"
    ],
    "background": {
        "persistent": false,
        "scripts": [
            "worker_proxy_background.js",
            "bower_components\/glualint-lib\/compiled.js"
        ]
    },
    "web_accessible_resources": [
        "worker_proxy.html"
    ]
}