Force.com Quick Notes

Extension provides slide out quick notes widget to save Org specific notes.

Что такое Force.com Quick Notes?

Force.com Quick Notes - это расширение Chrome, разработанное https://www.sfdcgems.com, и его основная функция - "Extension provides slide out quick notes widget to save Org specific notes.".

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

screenshot
screenshot
screenshot
screenshot
screenshot

Скачать файл CRX расширения Force.com Quick Notes

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

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

                        Extension provides slide out quick notes widget to save salesforce Org specific notes.
This extension use logged in user object to save notes data.
Current version is not secure, your administrator can see data.


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

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

Название Force.com Quick Notes Force.com Quick Notes
ID mdmcdbgcbamafkggllhiflibdcmnniei
Официальный URL https://chromewebstore.google.com/detail/forcecom-quick-notes/mdmcdbgcbamafkggllhiflibdcmnniei
Описание Extension provides slide out quick notes widget to save Org specific notes.
Размер файла 59.48 KB
Количество установок 11
Текущая Версия 1.3
Последнее Обновление 2014-05-11
Дата публикации 2014-05-11
Рейтинг 4.00/5 Всего 1 оценок
Разработчик https://www.sfdcgems.com
Тип оплаты free
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Force.com Quick Notes",
    "description": "Extension provides slide out quick notes widget to save Org specific notes.",
    "version": "1.3",
    "permissions": [
        "http:\/\/*.salesforce.com\/*",
        "https:\/\/*.salesforce.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*.salesforce.com\/*",
                "https:\/\/*.salesforce.com\/*"
            ],
            "js": [
                "\/js\/jquery-2.0.3.js",
                "\/js\/jquery.fseditor-min.js",
                "\/js\/jquery.tabSlideOut.v1.3.js",
                "\/js\/script.js"
            ],
            "css": [
                "\/css\/fseditor.css"
            ]
        }
    ],
    "web_accessible_resources": [
        "\/images\/contact_tab.gif"
    ],
    "manifest_version": 2
}