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!
Co je Better Facepunch Lua Blocks?
Better Facepunch Lua Blocks je rozšíření Chrome vyvinuté zerf, a jeho hlavní funkcí je „Improves the Lua code blocks on the Facepunch Garry's Mod Lua subforum with new features like editing, linting, and more!“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Better Facepunch Lua Blocks
Stáhněte si soubory rozšíření Better Facepunch Lua Blocks ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
Základní Informace o Rozšíření
Název | |
ID | ehobflckbaehomegofklbejikboechon |
Oficiální URL | https://chromewebstore.google.com/detail/better-facepunch-lua-bloc/ehobflckbaehomegofklbejikboechon |
Popis | Improves the Lua code blocks on the Facepunch Garry's Mod Lua subforum with new features like editing, linting, and more! |
Velikost souboru | 401 KB |
Počet instalací | 65 |
Aktuální Verze | 0.2.0 |
Poslední Aktualizace | 2017-02-28 |
Datum Vydání | 2017-02-27 |
Hodnocení | 4.71/5 Celkem 7 Hodnocení |
Vývojář | zerf |
Typ Platby | free |
Webové stránky Rozšíření | https://github.com/bmwalters/better-facepunch-lua-blocks |
URL Stránky Nápovědy | https://github.com/bmwalters/better-facepunch-lua-blocks/issues |
Podporované Jazyky | 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" ] } |