Inline Code Snippet Editor

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

Co to jest Inline Code Snippet Editor?

Inline Code Snippet Editor to rozszerzenie Chrome opracowane przez https://cloudtutorials.co, a jego główną funkcją jest „Tired of fiddling around after copying a code snippet before pasting into your terminal?”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Inline Code Snippet Editor

Pobierz pliki rozszerzeń Inline Code Snippet Editor w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Inline Code Snippet Editor Inline Code Snippet Editor
ID bcapdlmkekidiigkolgppjgoadlobeal
Oficjalny URL https://chrome.google.com/webstore/detail/inline-code-snippet-edito/bcapdlmkekidiigkolgppjgoadlobeal
Opis Tired of fiddling around after copying a code snippet before pasting into your terminal?
Rozmiar pliku 6.39 MB
Liczba instalacji 165
Aktualna Wersja 0.0.1
Ostatnia Aktualizacja 2019-03-08
Data Publikacji 2019-03-08
Deweloper https://cloudtutorials.co
Typ Płatności free
Obsługiwane Języki 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"
            ]
        }
    ]
}