Quick Overflow

Quickly find, understand, and solve your JavaScript errors

Что такое Quick Overflow?

Quick Overflow - это расширение Chrome, разработанное https://noamhacker.com, и его основная функция - "Quickly find, understand, and solve your JavaScript errors".

Снимки экрана расширения

screenshot
screenshot
screenshot

Скачать файл CRX расширения Quick Overflow

Скачайте файлы расширений Quick Overflow в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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"
        }
    ]
}