Web Developer Sidekick

Allows to recognize environments sites and display usefull data such as credentials ip address.

Web Developer Sidekick क्या है?

Web Developer Sidekick j.lahyani द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Allows to recognize environments sites and display usefull data such as credentials ip address."।

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

crx प्रारूप में Web Developer Sidekick एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

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

                        Please note that this extension is useful for web developers only.

Also available for Firefox

Once Web Developer Sidekick installed you have to go to configuration page (about:addons) and click Options. Now you can set the addon parameters.

The extension use YAML notations to read the parameters.

Note: Be carefull when you add credentials for production environment since any one who has access to your browser can see those credentials.

Features:

  + Displays website environment (screenshot 1)
  + Shows useful details (screenshot 2)
  + Extends popup byy adding new tabs (screenshots 3 & 4)
  + Customize addon behavior (screnshot 5)

For configuration details please check the documentation by following this link 
https://github.com/lahyani/web-developer-sidekick/tree/doc/doc                    

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

नाम Web Developer Sidekick Web Developer Sidekick
ID fglnkelbadkkikkfabnbioejhdhiahbi
आधिकारिक URL https://chromewebstore.google.com/detail/web-developer-sidekick/fglnkelbadkkikkfabnbioejhdhiahbi
विवरण Allows to recognize environments sites and display usefull data such as credentials ip address.
फ़ाइल का आकार 85.31 KB
स्थापना संख्या 34
वर्तमान संस्करण 0.0.24
अंतिम अपडेट 2018-04-18
प्रकाशन तिथि 2018-04-17
डेवलपर j.lahyani
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/lahyani/web-developer-sidekick
सहायता पृष्ठ URL https://github.com/lahyani/web-developer-sidekick/tree/doc/doc
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_extName__",
    "version": "0.0.24",
    "description": "__MSG_extDescription__",
    "default_locale": "en",
    "icons": {
        "48": "dev-sticker-icon.png"
    },
    "browser_action": {
        "default_icon": "icons\/dev-sticker-icon.png",
        "default_title": "__MSG_extTitle__",
        "default_popup": "popup\/main.html",
        "browser_style": true
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/lib\/js-yaml.min.js",
                "js\/data\/constants.js",
                "js\/dom.js",
                "js\/utils.js",
                "js\/content-script.js"
            ],
            "css": [
                "css\/common.css"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "storage",
        "tabs"
    ],
    "options_ui": {
        "page": "options\/main.html"
    },
    "web_accessible_resources": [
        "icons\/dev-sticker-icon.png",
        "images\/*.png"
    ]
}