OME
OME gives you a context menu for opening files in your editor on Chromium Code Search and Code Review.
OMEคืออะไร?
OME เป็นส่วนขยายของ Chrome ที่พัฒนาโดย http://chaopeng.me และคุณลักษณะหลักของมันคือ "OME gives you a context menu for opening files in your editor on Chromium Code Search and Code Review."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย OME
ดาวน์โหลดไฟล์ส่วนขยาย OME ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
OME gives you a context menu for opening files in your editor on Chromium Code Search and Code Review.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | ![]() |
ID | ddmghiaepldohkneojcfejekplkakgjg |
URL อย่างเป็นทางการ | https://chrome.google.com/webstore/detail/ome/ddmghiaepldohkneojcfejekplkakgjg |
คำอธิบาย | OME gives you a context menu for opening files in your editor on Chromium Code Search and Code Review. |
ขนาดไฟล์ | 6.92 KB |
จำนวนการติดตั้ง | 97 |
เวอร์ชันปัจจุบัน | 0.6.0 |
อัปเดตครั้งล่าสุด | 2017-05-13 |
วันที่เผยแพร่ | 2017-05-13 |
คะแนน | 3.00/5 รวมทั้งหมด 1 คะแนน |
ผู้พัฒนา | http://chaopeng.me |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://chromium.googlesource.com/chromium/src.git/+/master/tools/chrome_extensions/open_my_editor/README.md |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "OME", "description": "OME gives you a context menu for opening files in your editor on Chromium Code Search and Code Review.", "version": "0.6.0", "permissions": [ "contextMenus", "tabs", "activeTab", "http:\/\/127.0.0.1:8989\/*" ], "icons": { "16": "icon-16.png" }, "background": { "persistent": false, "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/chromium-review.googlesource.com\/*" ], "js": [ "gr-content.js" ] }, { "matches": [ "https:\/\/cs.chromium.org\/chromium\/src\/*" ], "js": [ "cs-content.js" ] }, { "matches": [ "https:\/\/codereview.chromium.org\/*" ], "js": [ "cr-content.js" ] } ], "manifest_version": 2 } |