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
官方網址 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"
            ]
        }
    ]
}