Salesforce Production Warning

Add a border on Screen to notify the environment that be operating is Production!

Salesforce Production Warning란 무엇입니까?

Salesforce Production Warning은(는) Kealsalas에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Add a border on Screen to notify the environment that be operating is Production!"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

Salesforce Production Warning 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Help Salesforce Developers and Admins to distinguish Sandbox and Production easily by border page red.

Release Note v1.6.1
Adjust User Guide and Put a link about privacy policy. No new feature.

Add setting samples for lightning and lightning sandbox
Add privay policy link
update years on footer

Release Note v1.6.0
Add an excellent new feature, Translucent diagonal stripe overlay effect! Default OFF, switch ON if a stronger hint is required.
*Thanks to @jdrbc for update this version.

Release Note v1.5.6
Add support for new instance name [usa][ind]

Release Note v1.5.5
Fix regex for special case.
Add Support for instance name [um]

Release Note v1.5.4
Add Support for VF new domain.
Add change icon feature. Default OFF. Tab Icons's color will change when swtich ON.

Release Note v1.5.3
Fix border position and coloring.
*Thanks to @ScottWalkerAU for update this version.

Release Note v1.5.2
Fix some bugs.

Release Note v1.5.1
Fix some bugs.
In order to protect Full Sandbox. Add Sandbox support.

Release Note v1.5

  Add Custom Domain Support
  Add Lightning Support

Release Note v1.3

  Add support for VF page.

Release Node v1.2:

  Add support for the instance number that over 100.                    

확장 프로그램 기본 정보

이름 Salesforce Production Warning Salesforce Production Warning
ID ifmhcncdlalfeogfoabkgojlfffdimpo
공식 URL https://chromewebstore.google.com/detail/salesforce-production-war/ifmhcncdlalfeogfoabkgojlfffdimpo
설명 Add a border on Screen to notify the environment that be operating is Production!
파일 크기 19.96 KB
설치 횟수 1,329
현재 버전 1.6.1
최근 업데이트 2023-04-19
출시 날짜 2020-04-26
평점 4.50/5 총 4 개의 평점
개발자 Kealsalas
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/Kealthals/SalesforceProductionWarning-Chrome
개인정보 보호 정책 페이지 URL https://blog.keal.us/privacy-policy
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Salesforce Production Warning",
    "version": "1.6.1",
    "description": "Add a border on Screen to notify the environment that be operating is Production!",
    "icons": {
        "16": "icons\/favicon.png",
        "48": "icons\/favicon48.png",
        "128": "icons\/favicon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.salesforce.com\/*",
                "*:\/\/*.visual.force.com\/*",
                "*:\/\/*.lightning.force.com\/*",
                "*:\/\/*.visualforce.com\/*"
            ],
            "js": [
                "border.js"
            ]
        }
    ],
    "action": {
        "default_icon": "icons\/favicon.png",
        "default_title": "SPWSettings",
        "default_popup": "popup\/action.html"
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    },
    "permissions": [
        "storage"
    ]
}