Codext

Code viewer and editor embedded in your browser!

Codext क्या है?

Codext codext-extension द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Code viewer and editor embedded in your browser!"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Codext एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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
}