Salesforce.com Developer Console Extension

SalesForce.com Developer Console Extension

Apa itu Salesforce.com Developer Console Extension?

Salesforce.com Developer Console Extension adalah ekstensi Chrome yang dikembangkan oleh Radek Baxa, dan fitur utamanya adalah "SalesForce.com Developer Console Extension".

Screenshot Ekstensi

screenshot
screenshot

Unduh Berkas CRX Ekstensi Salesforce.com Developer Console Extension

Unduh file ekstensi Salesforce.com Developer Console Extension dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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...                    

Informasi Dasar Ekstensi

Nama Salesforce.com Developer Console Extension Salesforce.com Developer Console Extension
ID iibaelocaoaknnnhmlmliamfjifnjiff
URL Resmi https://chromewebstore.google.com/detail/salesforcecom-developer-c/iibaelocaoaknnnhmlmliamfjifnjiff
Deskripsi SalesForce.com Developer Console Extension
Ukuran File 169 KB
Jumlah Instalasi 317
Versi Saat Ini 0.1.2
Terakhir Diperbarui 2022-09-19
Tanggal Publikasi 2016-09-25
Penilaian 5.00/5 Total 2 Penilaian
Pengembang Radek Baxa
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://bitbucket.org/RadekBaxa/sfdcdcextension
URL Halaman Bantuan https://bitbucket.org/RadekBaxa/sfdcdcextension/issues
URL Halaman Kebijakan Privasi https://www.radekbaxa.cz/chrome-extension-privacy-policy.html
Bahasa yang Didukung 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*"
    ]
}