Salesforce Full Screen Code Editor
Adapts the code editor window to full screen for best programming experience.
Cos'è Salesforce Full Screen Code Editor?
Salesforce Full Screen Code Editor è un'estensione di Chrome sviluppata da [email protected], e la sua funzione principale è "Adapts the code editor window to full screen for best programming experience.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Salesforce Full Screen Code Editor
Scarica i file di estensione Salesforce Full Screen Code Editor in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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! Informazioni di Base sull'Estensione
| Nome | |
| ID | ogelohfbpibohagmfaalipekmkmpbjai |
| URL Ufficiale | https://chromewebstore.google.com/detail/salesforce-full-screen-co/ogelohfbpibohagmfaalipekmkmpbjai |
| Descrizione | Adapts the code editor window to full screen for best programming experience. |
| Dimensione del File | 55.83 KB |
| Conteggio Installazioni | 302 |
| Versione Corrente | 1.4 |
| Ultimo Aggiornamento | 2015-06-09 |
| Data di Pubblicazione | 2015-06-09 |
| Valutazione | 3.40/5 Totale 5 Valutazioni |
| Sviluppatore | [email protected] |
| Tipo di Pagamento | free |
| Lingue Supportate | 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"
]
} | |