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!
Τι είναι το Better Facepunch Lua Blocks;
Το Better Facepunch Lua Blocks είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον zerf, και η κύρια λειτουργία του είναι "Improves the Lua code blocks on the Facepunch Garry's Mod Lua subforum with new features like editing, linting, and more!".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Better Facepunch Lua Blocks
Λήψη αρχείων επέκτασης Better Facepunch Lua Blocks σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
Βασικές Πληροφορίες Επέκτασης
Όνομα | |
ID | ehobflckbaehomegofklbejikboechon |
Επίσημο URL | https://chromewebstore.google.com/detail/better-facepunch-lua-bloc/ehobflckbaehomegofklbejikboechon |
Περιγραφή | Improves the Lua code blocks on the Facepunch Garry's Mod Lua subforum with new features like editing, linting, and more! |
Μέγεθος Αρχείου | 401 KB |
Αριθμός Εγκαταστάσεων | 65 |
Τρέχουσα Έκδοση | 0.2.0 |
Τελευταία Ενημέρωση | 2017-02-28 |
Ημερομηνία Δημοσίευσης | 2017-02-27 |
Αξιολόγηση | 4.71/5 Συνολικά 7 Αξιολογήσεις |
Προγραμματιστής | zerf |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://github.com/bmwalters/better-facepunch-lua-blocks |
Διεύθυνση URL της Σελίδας Βοήθειας | https://github.com/bmwalters/better-facepunch-lua-blocks/issues |
Υποστηριζόμενες Γλώσσες | 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" ] } |