Encode
Make a string to a code block.
Encodeคืออะไร?
Encode เป็นส่วนขยายของ Chrome ที่พัฒนาโดย tsuruda และคุณลักษณะหลักของมันคือ "Make a string to a code block."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Encode
ดาวน์โหลดไฟล์ส่วนขยาย Encode ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Encode is a chrome extension to make selected text a code block.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Encode |
ID | jahidgfhkihpbdldkjhpcccbaklbblha |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/encode/jahidgfhkihpbdldkjhpcccbaklbblha |
คำอธิบาย | Make a string to a code block. |
ขนาดไฟล์ | 4.95 KB |
จำนวนการติดตั้ง | 46 |
เวอร์ชันปัจจุบัน | 0.0.3 |
อัปเดตครั้งล่าสุด | 2018-10-31 |
วันที่เผยแพร่ | 2018-10-31 |
ผู้พัฒนา | tsuruda |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/dulltz/encode |
ภาษาที่รองรับ | ja |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Encode", "version": "0.0.3", "description": "Make a string to a code block.", "manifest_version": 2, "permissions": [ "activeTab" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "https:\/\/*.cybozu.com\/*", "https:\/\/*.cybozu-dev.com\/*" ], "js": [ "content.js" ] } ], "browser_action": { "default_title": "Make selected text to a code block" }, "commands": { "code-block": { "suggested_key": { "default": "Ctrl+Shift+Y", "mac": "Command+Shift+Y" }, "description": "Make selected text to a code block." } } } |