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