Salesforce Full Screen Code Editor

Adapts the code editor window to full screen for best programming experience.

What is Salesforce Full Screen Code Editor?

Salesforce Full Screen Code Editor is a Chrome extension developed by [email protected], and its main feature is "Adapts the code editor window to full screen for best programming experience.".

Extension Screenshots

screenshot
screenshot
screenshot
screenshot

Download Salesforce Full Screen Code Editor Extension CRX File

Download Salesforce Full Screen Code Editor extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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!                    

Extension Basic Information

Name Salesforce Full Screen Code Editor Salesforce Full Screen Code Editor
ID ogelohfbpibohagmfaalipekmkmpbjai
Official URL https://chromewebstore.google.com/detail/salesforce-full-screen-co/ogelohfbpibohagmfaalipekmkmpbjai
Description Adapts the code editor window to full screen for best programming experience.
File Size 55.83 KB
Installation Count 302
Current Version 1.4
Last Updated 2015-06-09
Publish Date 2015-06-09
Rating 3.40/5 Total 5 Ratings
Developer [email protected]
Payment Type free
Supported Languages 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"
    ]
}