Inline Code Snippet Editor

Tired of fiddling around after copying a code snippet before pasting into your terminal?

Inline Code Snippet Editor क्या है?

Inline Code Snippet Editor https://cloudtutorials.co द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Tired of fiddling around after copying a code snippet before pasting into your terminal?"।

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

screenshot

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

crx प्रारूप में Inline Code Snippet Editor एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        The CloudTutorials Inline Snippet Editor adds a context menu to Chrome to allow for painless, unintrusive editing of code blocks on your favourite tutorial sites.

Currently supports blocks that are found in the HTML tags pre, code and div.terminal.                    

एक्सटेंशन की मूल जानकारी

नाम Inline Code Snippet Editor Inline Code Snippet Editor
ID bcapdlmkekidiigkolgppjgoadlobeal
आधिकारिक URL https://chrome.google.com/webstore/detail/inline-code-snippet-edito/bcapdlmkekidiigkolgppjgoadlobeal
विवरण Tired of fiddling around after copying a code snippet before pasting into your terminal?
फ़ाइल का आकार 6.39 MB
स्थापना संख्या 165
वर्तमान संस्करण 0.0.1
अंतिम अपडेट 2019-03-08
प्रकाशन तिथि 2019-03-08
डेवलपर https://cloudtutorials.co
भुगतान के प्रकार free
समर्थित भाषाएँ en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Inline Code Snippet Editor",
    "version": "0.0.1",
    "manifest_version": 2,
    "description": "Tired of fiddling around after copying a code snippet before pasting into your terminal?",
    "homepage_url": "https:\/\/cloudtutorials.co\/inline-code-snippet-editor\/",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "background": {
        "scripts": [
            "src\/bg\/background.js"
        ],
        "persistent": true
    },
    "permissions": [
        "contextMenus",
        "activeTab"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "js": [
                "src\/inject\/inject.js"
            ]
        }
    ]
}