Unreal Engine Api Usability Mod
This improves the useability of the Unreal Engine 4 API by adding useful links.
Τι είναι το Unreal Engine Api Usability Mod;
Το Unreal Engine Api Usability Mod είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Matt Chapman, και η κύρια λειτουργία του είναι "This improves the useability of the Unreal Engine 4 API by adding useful links.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Unreal Engine Api Usability Mod
Λήψη αρχείων επέκτασης Unreal Engine Api Usability Mod σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
This extensions makes the UE4 api easier to use by replacing some text with links to GitHub. It also adds page links to the different sections. The options for the extension allow you to set the base url for documentation.
Βασικές Πληροφορίες Επέκτασης
Όνομα | Unreal Engine Api Usability Mod |
ID | icnjogjkmpkbeokkblkgadigngeabkbg |
Επίσημο URL | https://chromewebstore.google.com/detail/unreal-engine-api-usabili/icnjogjkmpkbeokkblkgadigngeabkbg |
Περιγραφή | This improves the useability of the Unreal Engine 4 API by adding useful links. |
Μέγεθος Αρχείου | 33.44 KB |
Αριθμός Εγκαταστάσεων | 187 |
Τρέχουσα Έκδοση | 1.4 |
Τελευταία Ενημέρωση | 2022-03-22 |
Ημερομηνία Δημοσίευσης | 2015-11-27 |
Αξιολόγηση | 4.00/5 Συνολικά 5 Αξιολογήσεις |
Προγραμματιστής | Matt Chapman |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://github.com/Daekesh/UEApiUseabilityMod |
Υποστηριζόμενες Γλώσσες | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Unreal Engine Api Usability Mod", "description": "This improves the useability of the Unreal Engine 4 API by adding useful links.", "version": "1.4", "content_scripts": [ { "matches": [ "https:\/\/docs.unrealengine.com\/*" ], "js": [ "myscript.js" ] } ], "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "permissions": [ "storage" ], "options_ui": { "page": "options.html", "open_in_tab": false }, "web_accessible_resources": [ { "resources": [ "pagescript.js" ], "matches": [ "https:\/\/docs.unrealengine.com\/*" ] } ] } |