Salesforce Full Screen Code Editor
Adapts the code editor window to full screen for best programming experience.
Co to jest Salesforce Full Screen Code Editor?
Salesforce Full Screen Code Editor to rozszerzenie Chrome opracowane przez [email protected], a jego główną funkcją jest „Adapts the code editor window to full screen for best programming experience.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Salesforce Full Screen Code Editor
Pobierz pliki rozszerzeń Salesforce Full Screen Code Editor w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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!
Podstawowe informacje o rozszerzeniu
Nazwa | Salesforce Full Screen Code Editor |
ID | ogelohfbpibohagmfaalipekmkmpbjai |
Oficjalny URL | https://chromewebstore.google.com/detail/salesforce-full-screen-co/ogelohfbpibohagmfaalipekmkmpbjai |
Opis | Adapts the code editor window to full screen for best programming experience. |
Rozmiar pliku | 55.83 KB |
Liczba instalacji | 302 |
Aktualna Wersja | 1.4 |
Ostatnia Aktualizacja | 2015-06-09 |
Data Publikacji | 2015-06-09 |
Ocena | 3.40/5 Łącznie 5 Oceny |
Deweloper | [email protected] |
Typ Płatności | free |
Obsługiwane Języki | 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" ] } |