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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
    ]
}