Salesforce Full Screen Code Editor
Adapts the code editor window to full screen for best programming experience.
Apa itu Salesforce Full Screen Code Editor?
Salesforce Full Screen Code Editor adalah ekstensi Chrome yang dikembangkan oleh [email protected], dan fitur utamanya adalah "Adapts the code editor window to full screen for best programming experience.".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Salesforce Full Screen Code Editor
Unduh file ekstensi Salesforce Full Screen Code Editor dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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!
Informasi Dasar Ekstensi
Nama | Salesforce Full Screen Code Editor |
ID | ogelohfbpibohagmfaalipekmkmpbjai |
URL Resmi | https://chromewebstore.google.com/detail/salesforce-full-screen-co/ogelohfbpibohagmfaalipekmkmpbjai |
Deskripsi | Adapts the code editor window to full screen for best programming experience. |
Ukuran File | 55.83 KB |
Jumlah Instalasi | 302 |
Versi Saat Ini | 1.4 |
Terakhir Diperbarui | 2015-06-09 |
Tanggal Publikasi | 2015-06-09 |
Penilaian | 3.40/5 Total 5 Penilaian |
Pengembang | [email protected] |
Tipe Pembayaran | free |
Bahasa yang Didukung | 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" ] } |