Prodwarn

Display warning when using the production sites

Prodwarn क्या है?

Prodwarn https://webee.asia द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Display warning when using the production sites"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Prodwarn एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
    }
}