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 |
官方URL | 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" } |