Salesforce.com Developer Console Extension

SalesForce.com Developer Console Extension

Salesforce.com Developer Console Extensionとは何ですか?

Salesforce.com Developer Console ExtensionはRadek Baxaによって開発されたChromeの拡張機能で、その主な機能は「SalesForce.com Developer Console Extension」です。

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

screenshot
screenshot

Salesforce.com Developer Console Extension拡張機能のCRXファイルをダウンロード

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

拡張機能の使用方法

                        Salesforce.com Developer Console Extension makes writing code more pleasant.

Open source: https://bitbucket.org/RadekBaxa/sfdcdcextension

Extension adds:
CTRL + L shortcut for go to line number.
CTRL + Q shortcut for go to last edited place
Optionally disable back/forward key shortcut.
Next features coming soon...                    

拡張機能の基本情報

名前 Salesforce.com Developer Console Extension Salesforce.com Developer Console Extension
ID iibaelocaoaknnnhmlmliamfjifnjiff
公式URL https://chromewebstore.google.com/detail/salesforcecom-developer-c/iibaelocaoaknnnhmlmliamfjifnjiff
説明 SalesForce.com Developer Console Extension
ファイルサイズ 169 KB
インストール数 317
現在のバージョン 0.1.2
最終更新日 2022-09-19
公開日 2016-09-25
評価 5.00/5 合計 2 レビュー
開発者 Radek Baxa
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://bitbucket.org/RadekBaxa/sfdcdcextension
ヘルプページのURL https://bitbucket.org/RadekBaxa/sfdcdcextension/issues
プライバシーポリシーページのURL https://www.radekbaxa.cz/chrome-extension-privacy-policy.html
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Salesforce.com Developer Console Extension",
    "short_name": "SFDC DC Extension",
    "version": "0.1.2",
    "default_locale": "en",
    "description": "__MSG_ManifestDescription__",
    "icons": {
        "256": "img\/256_cloud-check.png",
        "128": "img\/128_cloud-check.png",
        "64": "img\/64_cloud-check.png",
        "32": "img\/32_cloud-check.png",
        "24": "img\/24_cloud-check.png",
        "16": "img\/16_cloud-check.png"
    },
    "browser_action": {
        "default_title": "SFDC DC Extension",
        "default_icon": "\/img\/16_cloud-check.png",
        "default_popup": "popup.html"
    },
    "author": "Radek Baxa",
    "options_page": "options.html",
    "options_ui": {
        "chrome_style": false,
        "page": "options.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/_ui\/common\/apex\/debug\/ApexCSIPage*"
            ],
            "js": [
                "jquery-1.11.3.min.js",
                "sfdcdc-content-script.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "img\/*.png",
        "dev-console-goto-actions.js",
        "prevent-default-back-forward-actions.js"
    ],
    "permissions": [
        "storage",
        "https:\/\/*\/_ui\/common\/apex\/debug\/ApexCSIPage*"
    ]
}