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 to jest Better Facepunch Lua Blocks?
Better Facepunch Lua Blocks to rozszerzenie Chrome opracowane przez zerf, a jego główną funkcją jest „Improves the Lua code blocks on the Facepunch Garry's Mod Lua subforum with new features like editing, linting, and more!”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Better Facepunch Lua Blocks
Pobierz pliki rozszerzeń Better Facepunch Lua Blocks w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
Podstawowe informacje o rozszerzeniu
Nazwa | |
ID | ehobflckbaehomegofklbejikboechon |
Oficjalny URL | https://chromewebstore.google.com/detail/better-facepunch-lua-bloc/ehobflckbaehomegofklbejikboechon |
Opis | Improves the Lua code blocks on the Facepunch Garry's Mod Lua subforum with new features like editing, linting, and more! |
Rozmiar pliku | 401 KB |
Liczba instalacji | 65 |
Aktualna Wersja | 0.2.0 |
Ostatnia Aktualizacja | 2017-02-28 |
Data Publikacji | 2017-02-27 |
Ocena | 4.71/5 Łącznie 7 Oceny |
Deweloper | zerf |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/bmwalters/better-facepunch-lua-blocks |
Adres URL Strony Pomocy | https://github.com/bmwalters/better-facepunch-lua-blocks/issues |
Obsługiwane Języki | 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" ] } |