Codext

Code viewer and editor embedded in your browser!

Codext란 무엇입니까?

Codext은(는) codext-extension에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Code viewer and editor embedded in your browser!"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        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.                    

확장 프로그램 기본 정보

이름 Codext Codext
ID mghlpehggoiecmpcdadkdbeofcheghcc
공식 URL https://chromewebstore.google.com/detail/codext/mghlpehggoiecmpcdadkdbeofcheghcc
설명 Code viewer and editor embedded in your browser!
파일 크기 2.48 MB
설치 횟수 274
현재 버전 1.1.2
최근 업데이트 2021-12-13
출시 날짜 2019-10-01
평점 5.00/5 총 4 개의 평점
개발자 codext-extension
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/BBC/codext
도움말 페이지 URL https://github.com/BBC/codext/issues
지원되는 언어 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
}