Inline Code Snippet Editor
Tired of fiddling around after copying a code snippet before pasting into your terminal?
Hvad er Inline Code Snippet Editor?
Inline Code Snippet Editor er en Chrome-udvidelse udviklet af https://cloudtutorials.co, og dens hovedfunktion er "Tired of fiddling around after copying a code snippet before pasting into your terminal?".
Udvidelsesskærmbilleder
Download Inline Code Snippet Editor-udvidelses-CRX-fil
Download Inline Code Snippet Editor-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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.
Grundlæggende oplysninger om udvidelsen
Navn | |
ID | bcapdlmkekidiigkolgppjgoadlobeal |
Officiel URL | https://chrome.google.com/webstore/detail/inline-code-snippet-edito/bcapdlmkekidiigkolgppjgoadlobeal |
Beskrivelse | Tired of fiddling around after copying a code snippet before pasting into your terminal? |
Filstørrelse | 6.39 MB |
Antal Installationer | 165 |
Nuværende Version | 0.0.1 |
Senest Opdateret | 2019-03-08 |
Udgivelsesdato | 2019-03-08 |
Udvikler | https://cloudtutorials.co |
Betalingsmetode | free |
Understøttede Sprog | 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" ] } ] } |