Inline Code Snippet Editor

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

Apa itu Inline Code Snippet Editor?

Inline Code Snippet Editor adalah ekstensi Chrome yang dikembangkan oleh https://cloudtutorials.co, dan fitur utamanya adalah "Tired of fiddling around after copying a code snippet before pasting into your terminal?".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Inline Code Snippet Editor

Unduh file ekstensi Inline Code Snippet Editor dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Inline Code Snippet Editor Inline Code Snippet Editor
ID bcapdlmkekidiigkolgppjgoadlobeal
URL Resmi https://chrome.google.com/webstore/detail/inline-code-snippet-edito/bcapdlmkekidiigkolgppjgoadlobeal
Deskripsi Tired of fiddling around after copying a code snippet before pasting into your terminal?
Ukuran File 6.39 MB
Jumlah Instalasi 165
Versi Saat Ini 0.0.1
Terakhir Diperbarui 2019-03-08
Tanggal Publikasi 2019-03-08
Pengembang https://cloudtutorials.co
Tipe Pembayaran free
Bahasa yang Didukung 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"
            ]
        }
    ]
}