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.”。

擴展截圖

screenshot
screenshot

下載BF2042 Portal Extensions擴展crx文件

下載BF2042 Portal Extensions擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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 BF2042 Portal Extensions
ID ojegdnmadhmgfijhiibianlhbkepdhlj
官方網址 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"
    ]
}