Refined C3
Various tweaks and improvements for the Construct 3 Editor
什么是Refined C3?
Refined C3是由Armaldio开发的Chrome扩展程序,该扩展的主要功能是“Various tweaks and improvements for the Construct 3 Editor”。
扩展截图
下载Refined C3扩展crx文件
下载Refined C3扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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 扩展基本信息
| 名称 | |
| ID | oancmpnjbfdoghooiachoknamecnjoll |
| 官方URL | https://chromewebstore.google.com/detail/refined-c3/oancmpnjbfdoghooiachoknamecnjoll |
| 简介 | Various tweaks and improvements for the Construct 3 Editor |
| 文件大小 | 1.03 MB |
| 安装次数 | 222 |
| 当前版本 | 0.2.6 |
| 更新时间 | 2021-12-01 |
| 上架时间 | 2021-05-19 |
| 评分 | 5.00/5 共2次评分 |
| 开发者 | Armaldio |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://github.com/Armaldio/refined-construct-3 |
| 支持的语言 | 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'"
} | |