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 هو إضافة Chrome تم تطويرها بواسطة [email protected]، والميزة الرئيسية لها هي "Adapts the code editor window to full screen for best programming experience.".

لقطات شاشة التمديد

screenshot
screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة Salesforce Full Screen Code Editor

قم بتنزيل ملفات الامتداد Salesforce Full Screen Code Editor بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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"
    ]
}