Salesforce Full Screen Code Editor

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

Co je Salesforce Full Screen Code Editor?

Salesforce Full Screen Code Editor je rozšíření Chrome vyvinuté [email protected], a jeho hlavní funkcí je „Adapts the code editor window to full screen for best programming experience.“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření Salesforce Full Screen Code Editor

Stáhněte si soubory rozšíření Salesforce Full Screen Code Editor ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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!                    

Základní Informace o Rozšíření

Název Salesforce Full Screen Code Editor Salesforce Full Screen Code Editor
ID ogelohfbpibohagmfaalipekmkmpbjai
Oficiální URL https://chromewebstore.google.com/detail/salesforce-full-screen-co/ogelohfbpibohagmfaalipekmkmpbjai
Popis Adapts the code editor window to full screen for best programming experience.
Velikost souboru 55.83 KB
Počet instalací 302
Aktuální Verze 1.4
Poslední Aktualizace 2015-06-09
Datum Vydání 2015-06-09
Hodnocení 3.40/5 Celkem 5 Hodnocení
Vývojář [email protected]
Typ Platby free
Podporované Jazyky 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"
    ]
}