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!
Основная информация о расширении
Название | Salesforce Full Screen Code Editor |
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" ] } |