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 |
| Eメール | [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'"
} | |