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!

Cos'è Better Facepunch Lua Blocks?

Better Facepunch Lua Blocks è un'estensione di Chrome sviluppata da zerf, e la sua funzione principale è "Improves the Lua code blocks on the Facepunch Garry's Mod Lua subforum with new features like editing, linting, and more!".

Screenshot dell'Estensione

Scarica il file CRX dell'estensione Better Facepunch Lua Blocks

Scarica i file di estensione Better Facepunch Lua Blocks in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                                            

Informazioni di Base sull'Estensione

Nome Better Facepunch Lua Blocks Better Facepunch Lua Blocks
ID ehobflckbaehomegofklbejikboechon
URL Ufficiale https://chromewebstore.google.com/detail/better-facepunch-lua-bloc/ehobflckbaehomegofklbejikboechon
Descrizione Improves the Lua code blocks on the Facepunch Garry's Mod Lua subforum with new features like editing, linting, and more!
Dimensione del File 401 KB
Conteggio Installazioni 65
Versione Corrente 0.2.0
Ultimo Aggiornamento 2017-02-28
Data di Pubblicazione 2017-02-27
Valutazione 4.71/5 Totale 7 Valutazioni
Sviluppatore zerf
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/bmwalters/better-facepunch-lua-blocks
URL della Pagina di Aiuto https://github.com/bmwalters/better-facepunch-lua-blocks/issues
Lingue Supportate 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"
    ]
}