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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

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

                                            

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

الاسم 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
عنوان صفحة المساعدة 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"
    ]
}