Firebug Lite for Google Chrome

Firebug Lite - a port of the popular Firebug for Google Chrome.

Firebug Lite for Google Chrome란 무엇입니까?

Firebug Lite for Google Chrome은(는) https://stefanxo.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Firebug Lite - a port of the popular Firebug for Google Chrome."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Firebug Lite for Google Chrome 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        *NOTE : This is a fork of Firebug Lite as the original version is not supported any longer by newer Chrome versions*
*If you didn't use this extension before, and only _think_ that you might need it - you're most likely better of with the Chrome Devtools ( press F12 or Control+Shift+I or Command+Option+I )*

If you like, please support us to keep old extensions alive by donating a beer, a coffee, a car - whatever you like. https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=67TZLSEGYQFFW


Overview
-------------

Firebug Lite is not a substitute for Firebug, or Chrome Developer Tools. It is a tool to be used in conjunction with these tools. Firebug Lite provides the rich visual representation we are used to see in Firebug when it comes to HTML elements, DOM elements, and Box Model shading. It provides also some cool features like inspecting HTML elements with your mouse, and live editing CSS properties.




Updates
-------------

18th August 2019 : 

* Better error messages when a security policy of a website prevents Firebug from being injected
* Better error messages when Firebug didn't load yet, and is being executed on a website before it was reloaded
* Fixed issue where clicking on "Inspect with Firebug Lite" on right click would do nothing
* Added donation and rate extension links in context menu - thank you for supporting old extensions

23th January 2019 : 

* Fixes for newer Chrome versions

28th June 2018 : 

 * Updated to Firebug Lite 1.5
 * Fixes to make it work with Angular
 * Fixed missing images
 * Small bugfixes



Benefits over Firebug Lite bookmarklet
-----------------------------------------------------

  * Browser toolbar integration
  * Able to activate Firebug Lite for a particular domain
  * Firebug Lite will be loaded before all other scripts, allowing it to capture all console calls, and all XHR requests for that page
  * It is faster to load, because all code and images will be store in the extension's directory in your machine
  * Will be able to read external resources in the next version


Limitations
----------------

 * Cannot read external resources
 * Won't work well on pages with frames
 * JavaScript debugger isn't available
 * Net Panel isn't available


Activation
--------------

The Firebug Lite activation scheme is very simple. When you first visit a web page, Firebug icon will be grey, indicating that it is deactivated. Clicking on it will activate Firebug for all pages in that domain, and the icon will become orange.

To deactivate for a particular domain, go to a page in that domain, and click on the "off" button.


Contributing
-----------------

Your contribution is very important. Found a bug? Please 
report it in the support forum here

Have a suggestion? Have a problem? Same thing

If you would like to help with some code, or develop an extension for Firebug Lite, don't hesitate, join our team.                    

확장 프로그램 기본 정보

이름 Firebug Lite for Google Chrome Firebug Lite for Google Chrome
ID ehemiojjcpldeipjhjkepfdaohajpbdo
공식 URL https://chromewebstore.google.com/detail/firebug-lite-for-google-c/ehemiojjcpldeipjhjkepfdaohajpbdo
설명 Firebug Lite - a port of the popular Firebug for Google Chrome.
파일 크기 294 KB
설치 횟수 65,190
현재 버전 1.6.6
최근 업데이트 2019-08-18
출시 날짜 2019-08-18
평점 3.11/5 총 70 개의 평점
개발자 https://stefanxo.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://stefanxo.com
도움말 페이지 URL https://github.com/stefanXO/firebug-lite/issues
개인정보 보호 정책 페이지 URL https://github.com/stefanXO/Tab-Manager-Plus/blob/master/PRIVACY.md
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Firebug Lite for Google Chrome",
    "short_name": "Firebug Lite",
    "manifest_version": 2,
    "version": "1.6.6",
    "description": "Firebug Lite - a port of the popular Firebug for Google Chrome.",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": "bug128off.png",
        "default_title": "Firebug Lite 1.6"
    },
    "icons": {
        "128": "bug128.png",
        "16": "bug16.png",
        "32": "bug32.png",
        "64": "bug64.png"
    },
    "content_security_policy": "script-src 'self' 'unsafe-eval' 'sha256-FEmgUuMZmOpuWXT3HmrNYwZPWZm4PDUtaFgSjcJNsDw=' 'sha256-NFN0N9m0ptPEm8kMwO8GVoLQ+ft5OG+DYz3gKF\/ABzk=' 'sha256-kRBhdvuT+nHoV6UNz4GYGKsc4wkHyHrOk3t\/MxVjzYI=' 'sha256-QBcYkilKo0geZjzz1L4oTurblAnwBhuG+lTRi+zPH\/8='; object-src 'self'",
    "content_scripts": [
        {
            "all_frames": true,
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "contentScript.js"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        "*.js",
        "*.png",
        "*.gif",
        "*.css",
        "*.html"
    ],
    "permissions": [
        "contextMenus",
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "http:\/\/127.0.0.1\/*",
        "http:\/\/localhost\/*"
    ]
}