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开发的Chrome扩展程序,该扩展的主要功能是“Allows to recognize environments sites and display usefull data such as credentials ip address.”。

扩展截图

screenshot
screenshot
screenshot
screenshot
screenshot

下载Web Developer Sidekick扩展crx文件

下载Web Developer Sidekick扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

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