Salesforce Full Screen Code Editor
Adapts the code editor window to full screen for best programming experience.
Wat is Salesforce Full Screen Code Editor?
Salesforce Full Screen Code Editor is een Chrome-extensie ontwikkeld door [email protected], en de belangrijkste functie is "Adapts the code editor window to full screen for best programming experience.".
Extensie Screenshots
Download het CRX-bestand van de extensie Salesforce Full Screen Code Editor
Download Salesforce Full Screen Code Editor-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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!
Basisinformatie over de Extensie
Naam | Salesforce Full Screen Code Editor |
ID | ogelohfbpibohagmfaalipekmkmpbjai |
Officiële URL | https://chromewebstore.google.com/detail/salesforce-full-screen-co/ogelohfbpibohagmfaalipekmkmpbjai |
Beschrijving | Adapts the code editor window to full screen for best programming experience. |
Bestandsgrootte | 55.83 KB |
Aantal Installaties | 302 |
Huidige Versie | 1.4 |
Laatst Bijgewerkt | 2015-06-09 |
Publicatiedatum | 2015-06-09 |
Beoordeling | 3.40/5 Totaal 5 Beoordelingen |
Ontwikkelaar | [email protected] |
Betalingswijze | free |
Ondersteunde Talen | 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" ] } |