Whitelist All IPs for Salesforce
Whitelist All IPs for a Salesforce organization
Whitelist All IPs for Salesforceคืออะไร?
Whitelist All IPs for Salesforce เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://raydehler.com/cloud และคุณลักษณะหลักของมันคือ "Whitelist All IPs for a Salesforce organization"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Whitelist All IPs for Salesforce
ดาวน์โหลดไฟล์ส่วนขยาย Whitelist All IPs for Salesforce ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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 |
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\/*" ] } |