Devsheet
Search and create code snippets
Devsheetคืออะไร?
Devsheet เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://devsheet.com และคุณลักษณะหลักของมันคือ "Search and create code snippets"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Devsheet
ดาวน์โหลดไฟล์ส่วนขยาย Devsheet ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
The chrome extension provides you the short and easiest way to search and create code snippets on the cloud.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | jkfmhofllmgpemedelijnhcpfgbhaphc |
URL อย่างเป็นทางการ | https://chrome.google.com/webstore/detail/devsheet/jkfmhofllmgpemedelijnhcpfgbhaphc |
คำอธิบาย | Search and create code snippets |
ขนาดไฟล์ | 173 KB |
จำนวนการติดตั้ง | 168 |
เวอร์ชันปัจจุบัน | 1.3 |
อัปเดตครั้งล่าสุด | 2020-11-11 |
วันที่เผยแพร่ | 2019-07-20 |
คะแนน | 4.00/5 รวมทั้งหมด 4 คะแนน |
ผู้พัฒนา | https://devsheet.com |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://devsheet.com |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Devsheet", "manifest_version": 2, "description": "Search and create code snippets", "version": "1.3", "browser_action": { "default_icon": "icon.png", "default_title": "Devsheet", "default_popup": "popup.html" }, "permissions": [ "activeTab", "storage", "https:\/\/devsheet.com\/" ], "content_scripts": [ { "matches": [ "https:\/\/*\/*" ], "js": [ "lib\/prism.js", "js\/content-script.js" ], "css": [ "css\/dsStyle.css" ] } ] } |