Inline Code Snippet Editor
Tired of fiddling around after copying a code snippet before pasting into your terminal?
What is Inline Code Snippet Editor?
Inline Code Snippet Editor is a Chrome extension developed by https://cloudtutorials.co, and its main feature is "Tired of fiddling around after copying a code snippet before pasting into your terminal?".
Extension Screenshots
Download Inline Code Snippet Editor Extension CRX File
Download Inline Code Snippet Editor extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | |
ID | bcapdlmkekidiigkolgppjgoadlobeal |
Official URL | https://chrome.google.com/webstore/detail/inline-code-snippet-edito/bcapdlmkekidiigkolgppjgoadlobeal |
Description | Tired of fiddling around after copying a code snippet before pasting into your terminal? |
File Size | 6.39 MB |
Installation Count | 165 |
Current Version | 0.0.1 |
Last Updated | 2019-03-08 |
Publish Date | 2019-03-08 |
Developer | https://cloudtutorials.co |
Payment Type | free |
Supported Languages | 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" ] } ] } |