Copy Salesforce Code

Copy Salesforce code easily with Copy button. Productivity tool for Salesforce Developers.

Cos'è Copy Salesforce Code?

Copy Salesforce Code è un'estensione di Chrome sviluppata da Hemendra Singh Rajawat, e la sua funzione principale è "Copy Salesforce code easily with Copy button. Productivity tool for Salesforce Developers.".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Copy Salesforce Code

Scarica i file di estensione Copy Salesforce Code in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        To copy Salesforce code, you need to select the whole code manually by scrolling till the end of code and this gets annoying and time taking when you have large codes. 

"Copy Salesforce Code" extension provide copy button to easily copy the code. It works for Apex Class, Apex Triggers and Visualforce Page and Formula Field codes.                    

Informazioni di Base sull'Estensione

Nome Copy Salesforce Code Copy Salesforce Code
ID nmbfpjnjhckcffgpcdahlebepedkoaib
URL Ufficiale https://chrome.google.com/webstore/detail/copy-salesforce-code/nmbfpjnjhckcffgpcdahlebepedkoaib
Descrizione Copy Salesforce code easily with Copy button. Productivity tool for Salesforce Developers.
Dimensione del File 1.97 MB
Conteggio Installazioni 141
Versione Corrente 2.3.1
Ultimo Aggiornamento 2020-05-05
Data di Pubblicazione 2020-05-05
Valutazione 4.80/5 Totale 5 Valutazioni
Sviluppatore Hemendra Singh Rajawat
Tipo di Pagamento free
Lingue Supportate en
manifest.json
{
    "name": "Copy Salesforce Code",
    "version": "2.3.1",
    "manifest_version": 2,
    "description": "Copy Salesforce code easily with Copy button. Productivity tool for Salesforce Developers.",
    "author": "Hemendra Singh Rajawat",
    "icons": {
        "16": "static\/img\/icons\/Icon-16.png",
        "32": "static\/img\/icons\/Icon-32.png",
        "48": "static\/img\/icons\/Icon-48.png",
        "64": "static\/img\/icons\/Icon-64.png",
        "128": "static\/img\/icons\/Icon-128.png"
    },
    "browser_action": {
        "default_icon": "static\/img\/CopySalesforceCode.png",
        "default_popup": "pages\/popup.html"
    },
    "permissions": [
        "tabs",
        "storage",
        "https:\/\/*.salesforce.com\/*",
        "https:\/\/*.force.com\/*"
    ],
    "content_scripts": [
        {
            "js": [
                "static\/js\/functions.js",
                "static\/js\/contentscript.js"
            ],
            "css": [
                "static\/css\/style.min.css"
            ],
            "matches": [
                "https:\/\/*.salesforce.com\/*",
                "https:\/\/*.force.com\/*"
            ]
        }
    ],
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx?response=updatecheck&x=id%3Dnmbfpjnjhckcffgpcdahlebepedkoaib%26uc"
}