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!
Wat is Better Facepunch Lua Blocks?
Better Facepunch Lua Blocks is een Chrome-extensie ontwikkeld door zerf, en de belangrijkste functie is "Improves the Lua code blocks on the Facepunch Garry's Mod Lua subforum with new features like editing, linting, and more!".
Extensie Screenshots
Download het CRX-bestand van de extensie Better Facepunch Lua Blocks
Download Better Facepunch Lua Blocks-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
Basisinformatie over de Extensie
Naam | |
ID | ehobflckbaehomegofklbejikboechon |
Officiële URL | https://chromewebstore.google.com/detail/better-facepunch-lua-bloc/ehobflckbaehomegofklbejikboechon |
Beschrijving | Improves the Lua code blocks on the Facepunch Garry's Mod Lua subforum with new features like editing, linting, and more! |
Bestandsgrootte | 401 KB |
Aantal Installaties | 65 |
Huidige Versie | 0.2.0 |
Laatst Bijgewerkt | 2017-02-28 |
Publicatiedatum | 2017-02-27 |
Beoordeling | 4.71/5 Totaal 7 Beoordelingen |
Ontwikkelaar | zerf |
Betalingswijze | free |
Extensiewebsite | https://github.com/bmwalters/better-facepunch-lua-blocks |
Help Pagina-URL | https://github.com/bmwalters/better-facepunch-lua-blocks/issues |
Ondersteunde Talen | 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" ] } |