Refined C3
Various tweaks and improvements for the Construct 3 Editor
Was ist Refined C3?
Refined C3 ist eine Chrome-Erweiterung, die von Armaldio entwickelt wurde, und ihr Hauptmerkmal ist "Various tweaks and improvements for the Construct 3 Editor".
Erweiterungsscreenshots
Refined C3-Erweiterungs-CRX-Datei herunterladen
Laden Sie Refined C3-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
Refined C3 is a tool that add various tweaks and improvements to the Construct 3 Editor Highlights: - Quick search (Ctrl+Shift+K) - Filter objects in the debugger More features are planned, follow the project at: https://github.com/Armaldio/refined-construct-3/projects/1 Submit your bug or ideas at: https://github.com/Armaldio/refined-construct-3/issues
Grundlegende Informationen zur Erweiterung
Name | Refined C3 |
ID | oancmpnjbfdoghooiachoknamecnjoll |
Offizielle URL | https://chromewebstore.google.com/detail/refined-c3/oancmpnjbfdoghooiachoknamecnjoll |
Beschreibung | Various tweaks and improvements for the Construct 3 Editor |
Dateigröße | 1.03 MB |
Installationsanzahl | 222 |
Aktuelle Version | 0.2.6 |
Letztes Update | 2021-12-01 |
Veröffentlichungsdatum | 2021-05-19 |
Bewertung | 5.00/5 Insgesamt 2 Bewertungen |
Entwickler | Armaldio |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/Armaldio/refined-construct-3 |
Unterstützte Sprachen | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Refined C3", "homepage_url": "http:\/\/localhost:8080\/", "description": "Various tweaks and improvements for the Construct 3 Editor", "default_locale": "en", "permissions": [ "*:\/\/editor.construct.net\/*" ], "icons": { "16": "icons\/16.png", "48": "icons\/48.png", "128": "icons\/128.png" }, "web_accessible_resources": [ "messaging.js" ], "content_scripts": [ { "matches": [ "*:\/\/editor.construct.net\/*" ], "js": [ "js\/quickswitch.js", "js\/headway.js" ], "all_frames": true, "run_at": "document_end" }, { "matches": [ "*:\/\/preview.construct.net\/debug.html*" ], "js": [ "js\/debug-search.js" ], "all_frames": true } ], "background": { "scripts": [ "js\/background.js" ] }, "version": "0.2.6", "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'" } |