Web Developer Sidekick

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

Web Developer Sidekickคืออะไร?

Web Developer Sidekick เป็นส่วนขยายของ Chrome ที่พัฒนาโดย j.lahyani และคุณลักษณะหลักของมันคือ "Allows to recognize environments sites and display usefull data such as credentials ip address."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Web Developer Sidekick

ดาวน์โหลดไฟล์ส่วนขยาย 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"
    ]
}