ENV Alert - Warning message in production environment

Display a warning in the page when accessing a site that matches the specified domain.

ENV Alert - Warning message in production environment क्या है?

ENV Alert - Warning message in production environment https://www.bravi.co.jp द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Display a warning in the page when accessing a site that matches the specified domain."।

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

screenshot
screenshot

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

crx प्रारूप में ENV Alert - Warning message in production environment एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        This is a Chrome plugin that displays a warning in the page when you are accessing the production environment.

- How to use
After installation, an icon will appear next to the address bar.
Click and copy and paste the URL of the production environment into the displayed text area and click "Save".
Reload the page, and if a warning appears, the configuration is complete.

Reload the page, and if the warning is displayed, the configuration is complete. After that, the warning will be displayed when you access the saved domain.

- Other functions
If the warning is in the way and you can't click on the element behind it, click on the warning bar and the warning will move to the bottom of the page.

- Disclaimers
The use of this software is the responsibility of the user.
The developer of this software is not responsible for any damage caused by the use of this software.

- Release Notes
v1.0.3
  - English support
v1.0.2
  - Keep warning position during page transition.
  - Debug log is now not displayed.
v1.0.1
  - Fixed a bug that caused a console error when the saved domain was empty
v1.0.0
  - Release                    

एक्सटेंशन की मूल जानकारी

नाम ENV Alert - Warning message in production environment ENV Alert - Warning message in production environment
ID oekknalaoogdkgfnmmbodjmjmlkjmlkj
आधिकारिक URL https://chromewebstore.google.com/detail/env-alert-warning-message/oekknalaoogdkgfnmmbodjmjmlkjmlkj
विवरण Display a warning in the page when accessing a site that matches the specified domain.
फ़ाइल का आकार 18.1 KB
स्थापना संख्या 418
वर्तमान संस्करण 1.0.3
अंतिम अपडेट 2022-12-01
प्रकाशन तिथि 2020-12-30
रेटिंग 5.00/5 कुल 2 रेटिंग्स
डेवलपर https://www.bravi.co.jp
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "author": "[email protected]",
    "name": "__MSG_manifest_title__",
    "description": "__MSG_manifest_description__",
    "version": "1.0.3",
    "icons": {
        "16": "icon.png",
        "48": "icon.png",
        "128": "icon.png"
    },
    "browser_action": {
        "default_icon": "icon.png",
        "default_title": "ENV Alert",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "programs\/background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "programs\/content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        "programs\/content.js"
    ],
    "permissions": [
        "storage"
    ],
    "is_debug": false,
    "default_locale": "ja"
}