Quick Overflow

Quickly find, understand, and solve your JavaScript errors

Quick Overflow란 무엇입니까?

Quick Overflow은(는) https://noamhacker.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Quickly find, understand, and solve your JavaScript errors"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Quick Overflow 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Every time Quick Overflow detects an error in your JavaScript, it embeds an "error module" at the top of your webpage. 
This module contains:
• an explanation of your error
• the code that caused it
• a one-click Stack Overflow search for relevant solutions.

The extension can listen for errors on any website, but can also be easily disabled for when you want to browse the web in peace.

*IMPORTANT*
Click the icon to enable the extension, and make sure to "Allow access to file URLs" by visiting chrome://extensions. This allows the extension to listen for errors when you are developing locally.

More info and usage guide here: https://github.com/noamhacker/quick-overflow                    

확장 프로그램 기본 정보

이름 Quick Overflow Quick Overflow
ID kjjiidpkmljgchgkcjlbcbjbaangmobk
공식 URL https://chromewebstore.google.com/detail/quick-overflow/kjjiidpkmljgchgkcjlbcbjbaangmobk
설명 Quickly find, understand, and solve your JavaScript errors
파일 크기 57.43 KB
설치 횟수 22
현재 버전 1.1
최근 업데이트 2016-04-24
출시 날짜 2016-04-24
평점 4.67/5 총 3 개의 평점
개발자 https://noamhacker.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/noamhacker/quick-overflow
도움말 페이지 URL https://github.com/noamhacker/quick-overflow/blob/master/README.md
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Quick Overflow",
    "description": "Quickly find, understand, and solve your JavaScript errors",
    "version": "1.1",
    "browser_action": {
        "default_icon": "icon3.png",
        "default_popup": "popup.html",
        "default_title": "enable\/disable"
    },
    "icons": {
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "permissions": [
        "activeTab",
        "https:\/\/ajax.googleapis.com\/",
        "storage"
    ],
    "web_accessible_resources": [
        "custom.css",
        "so-icon.png",
        "info-icon.png"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [
                "custom.css"
            ],
            "js": [
                "inject.js"
            ],
            "run_at": "document_start"
        }
    ]
}