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 |
官方網址 | 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" ] } |