Salesforce.com Sandbox Favicon Extension

Adds an "S" to the standard Salesforce.com cloud favicon for all sandbox tabs in a Chrome window.

Salesforce.com Sandbox Favicon Extension란 무엇입니까?

Salesforce.com Sandbox Favicon Extension은(는) Joe Ferraro에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Adds an "S" to the standard Salesforce.com cloud favicon for all sandbox tabs in a Chrome window."입니다.

확장 프로그램 스크린샷

screenshot

Salesforce.com Sandbox Favicon Extension 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Superimposes an "S" on the standard Salesforce.com cloud favicon for all sandbox tabs in a Chrome window.

UPDATE: also adds a prefix to the Salesforce.com tab, e.g.: (na13) Account: ABC Textiles

UPDATE 2: pod prefix in the tab title is now optional (off by default). right click the icon and select "options" to enable/disable the server pod option.                    

확장 프로그램 기본 정보

이름 Salesforce.com Sandbox Favicon Extension Salesforce.com Sandbox Favicon Extension
ID nkfllgjejgfgcddfccnijhndhdmjkamf
공식 URL https://chrome.google.com/webstore/detail/salesforcecom-sandbox-fav/nkfllgjejgfgcddfccnijhndhdmjkamf
설명 Adds an "S" to the standard Salesforce.com cloud favicon for all sandbox tabs in a Chrome window.
파일 크기 40.93 KB
설치 횟수 3,000
현재 버전 1.6
최근 업데이트 2015-07-20
출시 날짜 2015-07-20
평점 4.72/5 총 64 개의 평점
개발자 Joe Ferraro
결제 유형 free
도움말 페이지 URL https://github.com/joeferraro/sfdc_sbox_chrome_extension
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Salesforce.com Sandbox Favicon Extension",
    "version": "1.6",
    "description": "Adds an \"S\" to the standard Salesforce.com cloud favicon for all sandbox tabs in a Chrome window.",
    "browser_action": {
        "default_icon": "salesforce.png"
    },
    "permissions": [
        "tabs",
        "storage"
    ],
    "options_page": "options.html",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.salesforce.com\/*",
                "https:\/\/*.visual.force.com\/*"
            ],
            "js": [
                "jquery.js",
                "contentscript.js"
            ]
        }
    ]
}