Web Developer Sidekick

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

Web Developer Sidekick là gì?

Web Developer Sidekick là một tiện ích mở rộng Chrome được phát triển bởi j.lahyani, và tính năng chính của nó là "Allows to recognize environments sites and display usefull data such as credentials ip address.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Web Developer Sidekick

Tải xuống các tệp mở rộng Web Developer Sidekick dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Web Developer Sidekick Web Developer Sidekick
ID fglnkelbadkkikkfabnbioejhdhiahbi
URL Chính Thức https://chromewebstore.google.com/detail/web-developer-sidekick/fglnkelbadkkikkfabnbioejhdhiahbi
Mô tả Allows to recognize environments sites and display usefull data such as credentials ip address.
Kích Thước Tệp 85.31 KB
Số Lần Cài Đặt 34
Phiên Bản Hiện Tại 0.0.24
Cập Nhật Lần Cuối 2018-04-18
Ngày Phát Hành 2018-04-17
Nhà Phát Triển j.lahyani
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/lahyani/web-developer-sidekick
URL Trang Trợ Giúp https://github.com/lahyani/web-developer-sidekick/tree/doc/doc
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}