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はzerfによって開発されたChromeの拡張機能で、その主な機能は「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拡張機能のCRXファイルをダウンロード
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" ] } |