Inline Code Snippet Editor
Tired of fiddling around after copying a code snippet before pasting into your terminal?
Inline Code Snippet Editor là gì?
Inline Code Snippet Editor là một tiện ích mở rộng Chrome được phát triển bởi https://cloudtutorials.co, và tính năng chính của nó là "Tired of fiddling around after copying a code snippet before pasting into your terminal?".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Inline Code Snippet Editor
Tải xuống các tệp mở rộng Inline Code Snippet Editor dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | bcapdlmkekidiigkolgppjgoadlobeal |
URL Chính Thức | https://chrome.google.com/webstore/detail/inline-code-snippet-edito/bcapdlmkekidiigkolgppjgoadlobeal |
Mô tả | Tired of fiddling around after copying a code snippet before pasting into your terminal? |
Kích Thước Tệp | 6.39 MB |
Số Lần Cài Đặt | 165 |
Phiên Bản Hiện Tại | 0.0.1 |
Cập Nhật Lần Cuối | 2019-03-08 |
Ngày Phát Hành | 2019-03-08 |
Nhà Phát Triển | https://cloudtutorials.co |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } ] } |