Codext

Code viewer and editor embedded in your browser!

O que é Codext?

Codext é uma extensão do Chrome desenvolvida por codext-extension, e sua principal característica é "Code viewer and editor embedded in your browser!".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Codext

Baixe arquivos de extensão Codext 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

                        Codext harnesses the power of the Monaco Editor by dynamically inserting it into code webpages. In addition to standard editor features such as syntax highlighting, section folding and code formatting, this extension allows users to interact with documents and export changes locally.

Codext will help you out with the following tasks:
● displaying code from online file systems or repositories.
● opening and viewing local files in your browser.
● prettifying API responses (e.g. GET requests returning JSON).
● making quick changes to files and downloading those changes locally.
● viewing GitLab/Bitbucket raw files in a proper editor.
● and any use-case you can think of!

Head over to the official repository for more information (https://github.com/bbc/codext) and feel free to give us feedback!

Note: the extension is packaged from the BBC's open-source Codext repository (Apache 2.0), but this non official distribution is not endorsed by the organisation.                    

Informações Básicas da Extensão

Nome Codext Codext
ID mghlpehggoiecmpcdadkdbeofcheghcc
URL Oficial https://chromewebstore.google.com/detail/codext/mghlpehggoiecmpcdadkdbeofcheghcc
Descrição Code viewer and editor embedded in your browser!
Tamanho do Arquivo 2.48 MB
Contagem de Instalações 274
Versão Atual 1.1.2
Última Atualização 2021-12-13
Data de Publicação 2019-10-01
Classificação 5.00/5 Total de 4 Avaliações
Desenvolvedor codext-extension
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/BBC/codext
URL da Página de Ajuda https://github.com/BBC/codext/issues
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Codext",
    "version": "1.1.2",
    "description": "Code viewer and editor embedded in your browser!",
    "author": "Pyves, Mika Leppala",
    "homepage_url": "https:\/\/github.com\/BBC\/Codext",
    "offline_enabled": true,
    "background": {
        "scripts": [
            "background\/background.js"
        ]
    },
    "page_action": {
        "default_icon": "images\/codext_icon.png",
        "default_title": "Codext"
    },
    "content_scripts": [
        {
            "js": [
                "content\/content.js"
            ],
            "matches": [
                ""
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "contextMenus",
        "downloads",
        "notifications",
        "storage",
        "webRequest",
        "tabs",
        ""
    ],
    "icons": {
        "128": "images\/codext_logo.png"
    },
    "web_accessible_resources": [
        "editor\/*",
        "lib\/*"
    ],
    "applications": {
        "gecko": {
            "id": "[email protected]"
        }
    },
    "manifest_version": 2
}