BF2042 Portal Extensions
Adds additional functionality to the BF2042 Portal Rules Editor.
BF2042 Portal Extensions क्या है?
BF2042 Portal Extensions Lennard Fonteijn द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Adds additional functionality to the BF2042 Portal Rules Editor."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में BF2042 Portal Extensions एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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" ] } |