Copy Salesforce Code
Copy Salesforce code easily with Copy button. Productivity tool for Salesforce Developers.
什麼是Copy Salesforce Code?
Copy Salesforce Code是由Hemendra Singh Rajawat開發的Chrome擴展程式,該擴展的主要功能是“Copy Salesforce code easily with Copy button. Productivity tool for Salesforce Developers.”。
擴展截圖
下載Copy Salesforce Code擴展crx文件
下載Copy Salesforce Code擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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. 擴展基本資訊
| 名稱 | |
| ID | nmbfpjnjhckcffgpcdahlebepedkoaib |
| 官方網址 | https://chrome.google.com/webstore/detail/copy-salesforce-code/nmbfpjnjhckcffgpcdahlebepedkoaib |
| 簡介 | Copy Salesforce code easily with Copy button. Productivity tool for Salesforce Developers. |
| 檔案大小 | 1.97 MB |
| 安裝次數 | 141 |
| 目前版本 | 2.3.1 |
| 更新時間 | 2020-05-05 |
| 上架時間 | 2020-05-05 |
| 評分 | 4.80/5 共 5 次評分 |
| 開發者 | Hemendra Singh Rajawat |
| 付費類型 | free |
| 支援的語言 | 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"
} | |