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是由[email protected]開發的Chrome擴展程式,該擴展的主要功能是“Adapts the code editor window to full screen for best programming experience.”。
擴展截圖
下載Salesforce Full Screen Code Editor擴展crx文件
下載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! 擴展基本資訊
| 名稱 | |
| ID | ogelohfbpibohagmfaalipekmkmpbjai |
| 官方網址 | 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"
]
} | |