Inline Code Snippet Editor

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

Wat is Inline Code Snippet Editor?

Inline Code Snippet Editor is een Chrome-extensie ontwikkeld door https://cloudtutorials.co, en de belangrijkste functie is "Tired of fiddling around after copying a code snippet before pasting into your terminal?".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Inline Code Snippet Editor

Download Inline Code Snippet Editor-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Inline Code Snippet Editor Inline Code Snippet Editor
ID bcapdlmkekidiigkolgppjgoadlobeal
Officiële URL https://chrome.google.com/webstore/detail/inline-code-snippet-edito/bcapdlmkekidiigkolgppjgoadlobeal
Beschrijving Tired of fiddling around after copying a code snippet before pasting into your terminal?
Bestandsgrootte 6.39 MB
Aantal Installaties 165
Huidige Versie 0.0.1
Laatst Bijgewerkt 2019-03-08
Publicatiedatum 2019-03-08
Ontwikkelaar https://cloudtutorials.co
Betalingswijze free
Ondersteunde Talen 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"
            ]
        }
    ]
}