Inline Code Snippet Editor
Tired of fiddling around after copying a code snippet before pasting into your terminal?
Inline Code Snippet Editorคืออะไร?
Inline Code Snippet Editor เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://cloudtutorials.co และคุณลักษณะหลักของมันคือ "Tired of fiddling around after copying a code snippet before pasting into your terminal?"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Inline Code Snippet Editor
ดาวน์โหลดไฟล์ส่วนขยาย Inline Code Snippet Editor ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | bcapdlmkekidiigkolgppjgoadlobeal |
URL อย่างเป็นทางการ | https://chrome.google.com/webstore/detail/inline-code-snippet-edito/bcapdlmkekidiigkolgppjgoadlobeal |
คำอธิบาย | Tired of fiddling around after copying a code snippet before pasting into your terminal? |
ขนาดไฟล์ | 6.39 MB |
จำนวนการติดตั้ง | 165 |
เวอร์ชันปัจจุบัน | 0.0.1 |
อัปเดตครั้งล่าสุด | 2019-03-08 |
วันที่เผยแพร่ | 2019-03-08 |
ผู้พัฒนา | https://cloudtutorials.co |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | 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" ] } ] } |