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 | 
| 官方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"
    ]
}  |  |