Inline Code Snippet Editor
Tired of fiddling around after copying a code snippet before pasting into your terminal?
Co je Inline Code Snippet Editor?
Inline Code Snippet Editor je rozšíření Chrome vyvinuté https://cloudtutorials.co, a jeho hlavní funkcí je „Tired of fiddling around after copying a code snippet before pasting into your terminal?“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Inline Code Snippet Editor
Stáhněte si soubory rozšíření Inline Code Snippet Editor ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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.
Základní Informace o Rozšíření
Název | |
ID | bcapdlmkekidiigkolgppjgoadlobeal |
Oficiální URL | https://chrome.google.com/webstore/detail/inline-code-snippet-edito/bcapdlmkekidiigkolgppjgoadlobeal |
Popis | Tired of fiddling around after copying a code snippet before pasting into your terminal? |
Velikost souboru | 6.39 MB |
Počet instalací | 165 |
Aktuální Verze | 0.0.1 |
Poslední Aktualizace | 2019-03-08 |
Datum Vydání | 2019-03-08 |
Vývojář | https://cloudtutorials.co |
Typ Platby | free |
Podporované Jazyky | 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" ] } ] } |