Salesforce Full Screen Code Editor
Adapts the code editor window to full screen for best programming experience.
Salesforce Full Screen Code Editorคืออะไร?
Salesforce Full Screen Code Editor เป็นส่วนขยายของ Chrome ที่พัฒนาโดย [email protected] และคุณลักษณะหลักของมันคือ "Adapts the code editor window to full screen for best programming experience."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Salesforce Full Screen Code Editor
ดาวน์โหลดไฟล์ส่วนขยาย Salesforce Full Screen Code Editor ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Version 1.4 Features: - Editor height adapts to screen size - Name on page title - Support: Apex Classes, Triggers, Components, Visualforce Pages, Email templates - Awesomeness also included! Press the icon at the url bar to start/exit the fullscreen mode. Awesome!
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | ogelohfbpibohagmfaalipekmkmpbjai |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/salesforce-full-screen-co/ogelohfbpibohagmfaalipekmkmpbjai |
คำอธิบาย | Adapts the code editor window to full screen for best programming experience. |
ขนาดไฟล์ | 55.83 KB |
จำนวนการติดตั้ง | 302 |
เวอร์ชันปัจจุบัน | 1.4 |
อัปเดตครั้งล่าสุด | 2015-06-09 |
วันที่เผยแพร่ | 2015-06-09 |
คะแนน | 3.40/5 รวมทั้งหมด 5 คะแนน |
ผู้พัฒนา | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Salesforce Full Screen Code Editor", "version": "1.4", "manifest_version": 2, "description": "Adapts the code editor window to full screen for best programming experience.", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "page_action": { "default_icon": "icon.png" }, "incognito": "split", "content_scripts": [ { "matches": [ "*:\/\/*.salesforce.com\/*" ], "js": [ "content.js" ], "run_at": "document_end" } ], "background": { "scripts": [ "background.js" ] }, "permissions": [ "declarativeContent" ] } |