Whitelist All IPs for Salesforce

Whitelist All IPs for a Salesforce organization

Whitelist All IPs for Salesforce란 무엇입니까?

Whitelist All IPs for Salesforce은(는) https://raydehler.com/cloud에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Whitelist All IPs for a Salesforce organization"입니다.

확장 프로그램 스크린샷

screenshot

Whitelist All IPs for Salesforce 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Salesforce has a great security model for 2 factor authentication and trusted systems.  Sometimes, however, it can be onerous.  

If you want to ensure that a user can access Salesforce without requiring a verification code or security token, you need to "whitelist" their IP on Setup => Security Controls => Network Access.

If you have a lot of IPs to whitelist, or you want to whitelist dynamic IPs, or you simply want to disregard this requirement altogether, enter this extension: Whitelist All IPs for Salesforce!

Simply:
1) Enable this plugin
2) Navigate to Setup => Security Controls => Network Access in your Salesforce org (must be an Admin)
3) Click the Whitelist All IPs button
4) Wait!  There is a progress indicator, it can take 30 seconds to 3 minutes depending on your connection.

Huge credit to Moti Korets for his SFDC Debug Logs extension, which had this "hidden feature"(https://github.com/motiko/sfdc-debug-logs).  

By the way!  This started as a homepage component, but the ability to run javascript in homepage components went away around Summer, 2015 -- hence the need for this extension.                    

확장 프로그램 기본 정보

이름 Whitelist All IPs for Salesforce Whitelist All IPs for Salesforce
ID nnlnikmkkbpgioojghgojoejgcheilic
공식 URL https://chromewebstore.google.com/detail/whitelist-all-ips-for-sal/nnlnikmkkbpgioojghgojoejgcheilic
설명 Whitelist All IPs for a Salesforce organization
파일 크기 12.68 KB
설치 횟수 2,274
현재 버전 0.0.1
최근 업데이트 2016-03-03
출시 날짜 2016-03-02
평점 4.83/5 총 23 개의 평점
개발자 https://raydehler.com/cloud
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Whitelist All IPs for Salesforce",
    "version": "0.0.1",
    "manifest_version": 2,
    "author": "Ray Dehler",
    "icons": {
        "16": "16.jpg",
        "48": "48.jpg",
        "128": "128.jpg"
    },
    "description": "Whitelist All IPs for a Salesforce organization",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.salesforce.com\/05G*"
            ],
            "js": [
                "sfdc.net.access.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "https:\/\/*.force.com\/*",
        "https:\/\/*.salesforce.com\/*"
    ]
}