Copy Salesforce Code

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

Co to jest Copy Salesforce Code?

Copy Salesforce Code to rozszerzenie Chrome opracowane przez Hemendra Singh Rajawat, a jego główną funkcją jest „Copy Salesforce code easily with Copy button. Productivity tool for Salesforce Developers.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Copy Salesforce Code

Pobierz pliki rozszerzeń Copy Salesforce Code w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Copy Salesforce Code Copy Salesforce Code
ID nmbfpjnjhckcffgpcdahlebepedkoaib
Oficjalny URL https://chrome.google.com/webstore/detail/copy-salesforce-code/nmbfpjnjhckcffgpcdahlebepedkoaib
Opis Copy Salesforce code easily with Copy button. Productivity tool for Salesforce Developers.
Rozmiar pliku 1.97 MB
Liczba instalacji 141
Aktualna Wersja 2.3.1
Ostatnia Aktualizacja 2020-05-05
Data Publikacji 2020-05-05
Ocena 4.80/5 Łącznie 5 Oceny
Deweloper Hemendra Singh Rajawat
Typ Płatności free
Obsługiwane Języki 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"
}