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"입니다.

확장 프로그램 스크린샷

screenshot

Refined C3 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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                    

확장 프로그램 기본 정보

이름 Refined C3 Refined C3
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'"
}