force.com Schema Utils

Extension provide maximize button to maximize canvas area and export to image facility.

Что такое force.com Schema Utils?

force.com Schema Utils - это расширение Chrome, разработанное Ajay Hada, и его основная функция - "Extension provide maximize button to maximize canvas area and export to image facility.".

Снимки экрана расширения

screenshot
screenshot
screenshot
screenshot

Скачать файл CRX расширения force.com Schema Utils

Скачайте файлы расширений force.com Schema Utils в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        1. Extension adds a maximize button in salesforce schema diagram toolbar to allow users to work on maximized view and restore it to standard view.
2. Extension provides Export Diagram button in maximized view which allow users to download schema diagram in PNG file.

NOTE: 
1.Please rename downloaded file with PNG extension.
2.Performance of this extension is not tested, It may not work properly on low end machines. 

// author: Ajay Singh Hada: http://facebook.com/ajay.hada || http://in.linkedin.com/pub/ajay-hada/10/3a7/379                    

Основная информация о расширении

Название force.com Schema Utils force.com Schema Utils
ID npfcndnapmajldpabjjmlmkflfjfcffc
Официальный URL https://chrome.google.com/webstore/detail/forcecom-schema-utils/npfcndnapmajldpabjjmlmkflfjfcffc
Описание Extension provide maximize button to maximize canvas area and export to image facility.
Размер файла 53.57 KB
Количество установок 25
Текущая Версия 1.1
Последнее Обновление 2014-05-11
Дата публикации 2014-05-11
Рейтинг 3.67/5 Всего 3 оценок
Разработчик Ajay Hada
Тип оплаты free
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "force.com Schema Utils",
    "description": "Extension provide maximize button to maximize canvas area and export to image facility.",
    "version": "1.1",
    "permissions": [
        "tabs",
        "contextMenus",
        "activeTab",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "jquery-2.0.3.js",
                "html2canvas.js",
                "script.js"
            ]
        }
    ],
    "manifest_version": 2
}