Inline Code Snippet Editor
Tired of fiddling around after copying a code snippet before pasting into your terminal?
Was ist Inline Code Snippet Editor?
Inline Code Snippet Editor ist eine Chrome-Erweiterung, die von https://cloudtutorials.co entwickelt wurde, und ihr Hauptmerkmal ist "Tired of fiddling around after copying a code snippet before pasting into your terminal?".
Erweiterungsscreenshots
Inline Code Snippet Editor-Erweiterungs-CRX-Datei herunterladen
Laden Sie Inline Code Snippet Editor-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | |
ID | bcapdlmkekidiigkolgppjgoadlobeal |
Offizielle URL | https://chrome.google.com/webstore/detail/inline-code-snippet-edito/bcapdlmkekidiigkolgppjgoadlobeal |
Beschreibung | Tired of fiddling around after copying a code snippet before pasting into your terminal? |
Dateigröße | 6.39 MB |
Installationsanzahl | 165 |
Aktuelle Version | 0.0.1 |
Letztes Update | 2019-03-08 |
Veröffentlichungsdatum | 2019-03-08 |
Entwickler | https://cloudtutorials.co |
Zahlungsart | free |
Unterstützte Sprachen | 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" ] } ] } |