Prodwarn

Display warning when using the production sites

Prodwarnคืออะไร?

Prodwarn เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://webee.asia และคุณลักษณะหลักของมันคือ "Display warning when using the production sites"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Prodwarn

ดาวน์โหลดไฟล์ส่วนขยาย Prodwarn ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        ■ 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"
    }
}