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文件

下载Codext扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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
}