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] द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Adapts the code editor window to full screen for best programming experience."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Salesforce Full Screen Code Editor एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

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