BF2042 Portal Extensions
Adds additional functionality to the BF2042 Portal Rules Editor.
BF2042 Portal Extensions란 무엇입니까?
BF2042 Portal Extensions은(는) Lennard Fonteijn에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Adds additional functionality to the BF2042 Portal Rules Editor."입니다.
확장 프로그램 스크린샷
BF2042 Portal Extensions 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
NOTE! As of v2.0.0 the extension is purposely split into a Browser Extension with minimal functionality and a Web Extension that does the rest as described below. The Browser Extension will load a Web Extension of your choice, which in turn is also responsible for managing plugins. The recommended Web Extension comes with a default Plugin Manager. In order to load additional plugins, you can open the Plugin Manager by right-clicking a Blockly workspace and going into Options > Plugin Manager. Functionality available: - Open Documentation - Copy to Clipboard - Paste from Clipboard - Add/Remove Comment - Show Inputs Vertically/Horizontally - Expand/Collapse Block - Expand/Collapse All Blocks - Add Blocks from the Context-menu - Toggle Distraction-Free Mode - Toggle Toolbox - Jump to Subroutine - Import/Export Blocks from/to JSON - Export Blocks to SVG[1] and PNG - Multiple selection by holding down SHIFT[2][3]: - Drag selection as one - Export selection to SVG[1] and PNG - Copy/Paste selection to/from clipboard - Plugin system [1] The SVG still contains all other blocks, it is only focused on the selected portion! If you only intended to share a selection, copy/paste it to a clean workspace first. [2] CTRL is used by Blockly to detach a block when dragging, hence SHIFT was used. [3] Most actions from the context-menu do not support multiple selections yet and will only be performed on the last selected block.
확장 프로그램 기본 정보
이름 | BF2042 Portal Extensions |
ID | ojegdnmadhmgfijhiibianlhbkepdhlj |
공식 URL | https://chromewebstore.google.com/detail/bf2042-portal-extensions/ojegdnmadhmgfijhiibianlhbkepdhlj |
설명 | Adds additional functionality to the BF2042 Portal Rules Editor. |
파일 크기 | 116 KB |
설치 횟수 | 502 |
현재 버전 | 2.0.0 |
최근 업데이트 | 2023-05-04 |
출시 날짜 | 2021-11-16 |
평점 | 5.00/5 총 7 개의 평점 |
개발자 | Lennard Fonteijn |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/LennardF1989/BF2142-Portal-Extensions |
도움말 페이지 URL | https://github.com/LennardF1989/BF2142-Portal-Extensions/issues |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "BF2042 Portal Extensions", "description": "Adds additional functionality to the BF2042 Portal Rules Editor.", "version": "2.0.0", "author": "Lennard Fonteijn", "homepage_url": "https:\/\/github.com\/LennardF1989\/BF2042-Portal-Extensions", "icons": { "128": "icon-128.png" }, "content_scripts": [ { "matches": [ "https:\/\/portal.battlefield.com\/*" ], "js": [ "extension\/app.js" ] } ], "manifest_version": 3, "action": { "default_icon": { "128": "icon-128.png" }, "default_popup": "options\/index.html" }, "web_accessible_resources": [ { "resources": [ "web\/app.js" ], "matches": [ "https:\/\/portal.battlefield.com\/*" ] } ], "permissions": [ "storage" ] } |