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によって開発されたChromeの拡張機能で、その主な機能は「Tired of fiddling around after copying a code snippet before pasting into your terminal?」です。

拡張機能のスクリーンショット

screenshot

Inline Code Snippet Editor拡張機能のCRXファイルをダウンロード

Inline Code Snippet Editor拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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"
            ]
        }
    ]
}