Refined C3

Various tweaks and improvements for the Construct 3 Editor

O que é Refined C3?

Refined C3 é uma extensão do Chrome desenvolvida por Armaldio, e sua principal característica é "Various tweaks and improvements for the Construct 3 Editor".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Refined C3

Baixe arquivos de extensão Refined C3 no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome Refined C3 Refined C3
ID oancmpnjbfdoghooiachoknamecnjoll
URL Oficial https://chromewebstore.google.com/detail/refined-c3/oancmpnjbfdoghooiachoknamecnjoll
Descrição Various tweaks and improvements for the Construct 3 Editor
Tamanho do Arquivo 1.03 MB
Contagem de Instalações 222
Versão Atual 0.2.6
Última Atualização 2021-12-01
Data de Publicação 2021-05-19
Classificação 5.00/5 Total de 2 Avaliações
Desenvolvedor Armaldio
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/Armaldio/refined-construct-3
Idiomas Suportados 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'"
}