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!

Vad är Better Facepunch Lua Blocks?

Better Facepunch Lua Blocks är en Chrome-tillägg utvecklad av zerf, och dess huvudfunktion är "Improves the Lua code blocks on the Facepunch Garry's Mod Lua subforum with new features like editing, linting, and more!".

Tilläggsskärmbilder

Ladda ner Better Facepunch Lua Blocks-förlängningens CRX-fil

Ladda ner Better Facepunch Lua Blocks-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                                            

Grundläggande Information om Tillägg

Namn Better Facepunch Lua Blocks Better Facepunch Lua Blocks
ID ehobflckbaehomegofklbejikboechon
Officiell webbadress https://chromewebstore.google.com/detail/better-facepunch-lua-bloc/ehobflckbaehomegofklbejikboechon
Beskrivning Improves the Lua code blocks on the Facepunch Garry's Mod Lua subforum with new features like editing, linting, and more!
Filstorlek 401 KB
Antal Installationer 65
Aktuell Version 0.2.0
Senast Uppdaterad 2017-02-28
Publiceringsdatum 2017-02-27
Betyg 4.71/5 Totalt 7 Betyg
Utvecklare zerf
Betalningssätt free
Tilläggswebbplats https://github.com/bmwalters/better-facepunch-lua-blocks
Hjälpsida URL https://github.com/bmwalters/better-facepunch-lua-blocks/issues
Stödda Språk 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"
    ]
}