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 هو إضافة Chrome تم تطويرها بواسطة https://cloudtutorials.co، والميزة الرئيسية لها هي "Tired of fiddling around after copying a code snippet before pasting into your terminal?".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Inline Code Snippet Editor

قم بتنزيل ملفات الامتداد Inline Code Snippet Editor بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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"
            ]
        }
    ]
}