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คืออะไร?

Better Facepunch Lua Blocks เป็นส่วนขยายของ Chrome ที่พัฒนาโดย zerf และคุณลักษณะหลักของมันคือ "Improves the Lua code blocks on the Facepunch Garry's Mod Lua subforum with new features like editing, linting, and more!"

ภาพหน้าจอของส่วนขยาย

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Better Facepunch Lua Blocks

ดาวน์โหลดไฟล์ส่วนขยาย Better Facepunch Lua Blocks ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

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

                                            

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Better Facepunch Lua Blocks Better Facepunch Lua Blocks
ID ehobflckbaehomegofklbejikboechon
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/better-facepunch-lua-bloc/ehobflckbaehomegofklbejikboechon
คำอธิบาย Improves the Lua code blocks on the Facepunch Garry's Mod Lua subforum with new features like editing, linting, and more!
ขนาดไฟล์ 401 KB
จำนวนการติดตั้ง 65
เวอร์ชันปัจจุบัน 0.2.0
อัปเดตครั้งล่าสุด 2017-02-28
วันที่เผยแพร่ 2017-02-27
คะแนน 4.71/5 รวมทั้งหมด 7 คะแนน
ผู้พัฒนา zerf
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/bmwalters/better-facepunch-lua-blocks
URL หน้าช่วยเหลือ https://github.com/bmwalters/better-facepunch-lua-blocks/issues
ภาษาที่รองรับ 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"
    ]
}