Unreal engine 4 API links
Redirects the source links at the bottom of the unreal engine api website to Epic's github or the repo set in options
Τι είναι το Unreal engine 4 API links;
Το Unreal engine 4 API links είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον mchernykh, και η κύρια λειτουργία του είναι "Redirects the source links at the bottom of the unreal engine api website to Epic's github or the repo set in options".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Unreal engine 4 API links
Λήψη αρχείων επέκτασης Unreal engine 4 API links σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
Use this manual to avoid 404 errors in github: https://www.unrealengine.com/en-US/ue4-on-github Cpp address is guessed so it may not exist. Donate: https://paypal.me/mchernykh
Βασικές Πληροφορίες Επέκτασης
Όνομα | Unreal engine 4 API links |
ID | inkkdlckkmhbkmdegnjoaiglneahfinh |
Επίσημο URL | https://chromewebstore.google.com/detail/unreal-engine-4-api-links/inkkdlckkmhbkmdegnjoaiglneahfinh |
Περιγραφή | Redirects the source links at the bottom of the unreal engine api website to Epic's github or the repo set in options |
Μέγεθος Αρχείου | 4.91 KB |
Αριθμός Εγκαταστάσεων | 27 |
Τρέχουσα Έκδοση | 1.01 |
Τελευταία Ενημέρωση | 2018-12-23 |
Ημερομηνία Δημοσίευσης | 2018-12-22 |
Προγραμματιστής | mchernykh |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Unreal engine 4 API links", "version": "1.01", "permissions": [ "storage", "declarativeContent" ], "options_page": "options.html", "options_ui": { "page": "options.html", "open_in_tab": false }, "description": "Redirects the source links at the bottom of the unreal engine api website to Epic's github or the repo set in options", "manifest_version": 2, "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "*:\/\/api.unrealengine.com\/*" ], "js": [ "convert_ue_links.js" ], "run_at": "document_end" } ] } |