Prodwarn

Display warning when using the production sites

Prodwarn란 무엇입니까?

Prodwarn은(는) https://webee.asia에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Display warning when using the production sites"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Prodwarn 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        ■ Introduction:
In A beautiful day, you accidentally test on the production system instead of the dev/test systems when coding. This is a way that the incident is to be.

Prodwarn is a browser extension that will warn us when using the production system instead of the dev/test system. It is an open-source software. Therefore, you can contribute for it on Github.

■ Features:
- Add/Edit/Delete a protected site that should be shown the warning message
- Auto fill current site when adding protected site
- Manage protected sites with Group and Site name
- Search protected sites by name, host
- Whitelist warning for page
- Multiple strategy for warning:
    - Float Message (default)
    - Dialog (Not implemented yet)
    - Watermark (Not implemented yet)
- Supported browsers: Chrome, Firefox, Opera.

■ v0.4.3:
- fix(firefox): does not display warning after adding the production site
- fix(firefox): does not auto-fill the page info when adding the production site                    

확장 프로그램 기본 정보

이름 Prodwarn Prodwarn
ID dgdfcekakoecdmmccembbgjeanedklic
공식 URL https://chromewebstore.google.com/detail/prodwarn/dgdfcekakoecdmmccembbgjeanedklic
설명 Display warning when using the production sites
파일 크기 622 KB
설치 횟수 98
현재 버전 0.4.3
최근 업데이트 2020-06-22
출시 날짜 2020-06-22
평점 5.00/5 총 4 개의 평점
개발자 https://webee.asia
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/kimyvgy/prodwarn
도움말 페이지 URL https://github.com/kimyvgy/prodwarn/issues
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Prodwarn",
    "description": "Display warning when using the production sites",
    "version": "0.4.3",
    "manifest_version": 2,
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "run_at": "document_end",
            "js": [
                "content-scripts\/main.js"
            ],
            "css": [
                "content-scripts\/main.css"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "browser_action": {
        "default_icon": "static\/images\/logo-48.png",
        "default_popup": "popup\/index.html"
    },
    "icons": {
        "16": "static\/images\/logo-16.png",
        "32": "static\/images\/logo-32.png",
        "48": "static\/images\/logo-48.png",
        "128": "static\/images\/logo-128.png"
    }
}