KaleidoScope Salesforce Plugin

Generates Salesforce Package (package.xml) from GitHub Pull Requests

KaleidoScope Salesforce Plugin란 무엇입니까?

KaleidoScope Salesforce Plugin은(는) CDW Technologies India Private Limited에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Generates Salesforce Package (package.xml) from GitHub Pull Requests"입니다.

확장 프로그램 스크린샷

screenshot

KaleidoScope Salesforce Plugin 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Generates Package.xml for Salesforce DX Projects from the file changes which are being committed as part of GIT Pull Request which will helps us to make salesforce deployments easier between salesforce environments faster. 

How It works?
1)Go to "Pull Requests" tab.
2)Click on any individual pull request which is available.
3)Go to "Files Changed" sub tab.
4)Click on Kaleidoscope Plugin Icon (KS) in the toolbar.
5)Salesforce Package will be generated based upon the file changes available in the pull request.

Additional Features :-
-Download Package XML
-Copy to Clipboard
-Copy File Path
-Copy as Regular Expression
-Automate Github Pull Request Template                    

확장 프로그램 기본 정보

이름 KaleidoScope Salesforce Plugin KaleidoScope Salesforce Plugin
ID ochoiljkenplelfacipokofbbjleemkp
공식 URL https://chromewebstore.google.com/detail/kaleidoscope-salesforce-p/ochoiljkenplelfacipokofbbjleemkp
설명 Generates Salesforce Package (package.xml) from GitHub Pull Requests
파일 크기 649 KB
설치 횟수 47
현재 버전 0.0.0.29
최근 업데이트 2022-07-20
출시 날짜 2021-02-19
개발자 CDW Technologies India Private Limited
이메일 [email protected]
결제 유형 free
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "KaleidoScope Salesforce Plugin",
    "version": "0.0.0.29",
    "description": "Generates Salesforce Package (package.xml) from GitHub Pull Requests",
    "icons": {
        "16": "icons\/favicon_io\/favicon-16x16.png",
        "32": "icons\/favicon_io\/favicon-32x32.png",
        "48": "icons\/favicon_io\/favicon-48x48.png",
        "128": "icons\/favicon_io\/favicon-128x128.png"
    },
    "background": {
        "scripts": [
            "browser-polyfill.js",
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*"
            ],
            "js": [
                "libraries\/jquery.min.js",
                "browser-polyfill.js",
                "contentscripts\/sfmetadataextractorgit.js"
            ],
            "css": [
                "libraries\/ksPopUp\/css\/kspopup.css"
            ]
        }
    ],
    "browser_action": {
        "default_icon": {
            "16": "icons\/favicon_io\/favicon-16x16.png",
            "32": "icons\/favicon_io\/favicon-32x32.png",
            "48": "icons\/favicon_io\/favicon-48x48.png",
            "128": "icons\/favicon_io\/favicon-128x128.png"
        },
        "default_title": "KaleidoScope"
    },
    "web_accessible_resources": [
        "html\/sf-finder-popup.html"
    ],
    "options_ui": {
        "page": "options.html",
        "browser_style": true,
        "chrome_style": true
    },
    "permissions": [
        "storage",
        "contextMenus"
    ]
}