Salesforce Schema Builder Expander

Expands Salesforce schema builder to have more real estate to visualise

Salesforce Schema Builder Expanderとは何ですか?

Salesforce Schema Builder Expanderはhttps://concret.ioによって開発されたChromeの拡張機能で、その主な機能は「Expands Salesforce schema builder to have more real estate to visualise」です。

拡張機能のスクリーンショット

Salesforce Schema Builder Expander拡張機能のCRXファイルをダウンロード

Salesforce Schema Builder Expander拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        Schema is best visualised with more real estate. You start by taking browser in full screen mode and hiding sidebar, this extension additionally hides the top header section, giving you extra 1-2 inches of screen. 
This extension only starts working when one is on Salesforce schema builder page, otherwise it sits quiet without consuming any machine resources.                    

拡張機能の基本情報

名前 Salesforce Schema Builder Expander Salesforce Schema Builder Expander
ID mhmpcpfhhfdoeiejndcmogmnlomkfdkk
公式URL https://chromewebstore.google.com/detail/salesforce-schema-builder/mhmpcpfhhfdoeiejndcmogmnlomkfdkk
説明 Expands Salesforce schema builder to have more real estate to visualise
ファイルサイズ 88.53 KB
インストール数 1,318
現在のバージョン 1.0
最終更新日 2015-02-16
公開日 2015-02-16
評価 4.80/5 合計 5 レビュー
開発者 https://concret.io
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト http://www.tgerm.com/2014/01/clutter-free-salesforce-schema-builder.html
ヘルプページのURL http://www.tgerm.com/2014/01/clutter-free-salesforce-schema-builder.html
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Salesforce Schema Builder Expander",
    "version": "1.0",
    "description": "Expands Salesforce schema builder to have more real estate to visualise",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "page_action": {
        "default_icon": "expand-19.png",
        "default_title": "Click to expand Schema Builder"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.salesforce.com\/_ui\/platform\/schema\/ui\/schemabuilder\/SchemaBuilderUi*"
            ],
            "js": [
                "jquery-2.0.3.min.js",
                "contentscript.js"
            ],
            "run_at": "document_idle",
            "all_frames": false
        }
    ],
    "icons": {
        "48": "expand-48.png",
        "128": "expand-128.png"
    },
    "web_accessible_resources": [
        "jquery-2.0.3.min.map"
    ],
    "manifest_version": 2
}