Quick Overflow

Quickly find, understand, and solve your JavaScript errors

Quick Overflow là gì?

Quick Overflow là một tiện ích mở rộng Chrome được phát triển bởi https://noamhacker.com, và tính năng chính của nó là "Quickly find, understand, and solve your JavaScript errors".

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

screenshot
screenshot
screenshot

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

Tải xuống các tệp mở rộng Quick Overflow 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

                        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                    

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

Tên Quick Overflow Quick Overflow
ID kjjiidpkmljgchgkcjlbcbjbaangmobk
URL Chính Thức https://chromewebstore.google.com/detail/quick-overflow/kjjiidpkmljgchgkcjlbcbjbaangmobk
Mô tả Quickly find, understand, and solve your JavaScript errors
Kích Thước Tệp 57.43 KB
Số Lần Cài Đặt 22
Phiên Bản Hiện Tại 1.1
Cập Nhật Lần Cuối 2016-04-24
Ngày Phát Hành 2016-04-24
Đánh Giá 4.67/5 Tổng số 3 Đánh Giá
Nhà Phát Triển https://noamhacker.com
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/noamhacker/quick-overflow
URL Trang Trợ Giúp https://github.com/noamhacker/quick-overflow/blob/master/README.md
Ngôn Ngữ Được Hỗ Trợ 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"
        }
    ]
}